Reputation: 321
I am downloading many folders and then splitting them into 1 Gb folder in windows OS. Right now, it is a manual process. Is there any windows command/program to split all the files into 1Gb folder?
Upvotes: 0
Views: 157
Reputation: 290225
You have the command split
split
split -b1G your_filename part
Upvotes: 1