I am using the following command in a batch file in order to archive MY_LARGE_FOLDER and my .rar file is too big:
WinRAR a -r D:\MY_LARGE_FOLDER.rar D:\MY_LARGE_FOLDER\*.txt D:\MY_LARGE_FOLDER\
- How can I archive MY_LARGE_FOLDER, into small .rar files of 4MB each using batch file? (or in other words, How to use the "Split to volumes, bytes" option using batch file?)
Thanks.
Thanks for the help! I used the -v switch:
WinRAR a -r **-v4000** D:\MY_LARGE_FOLDER.rar D:\MY_LARGE_FOLDER\*.txt D:\MY_LARGE_FOLDER\
and I got now 4 files of 4000 bytes each but after opening some of the files I saw that the files are duplicated on more than one archive (e.g. on Part01.rar and on Part02.rar) ???
1. I also tried the -s (solid) switch and the result is the same?
How can I solve it?