I have this command split -b 1800k file_name.tar.gz
but don’t know how to use this in Dart or Flutter.
I have a tar.gz file and I want to split it into multiple files in JSON format. Is this possible in Dart?
For example,
One original File: file_name.tar.gz
After splitting:
file_name_1.json, file_name_2.json, file_name_3.json, file_name_4.json, file_name_5.json
2
Answers
I got the solution for this
I have made the below Function to Split files into multiple segments.