Hi, I try to to use the following batch command to start for each of the files in a the given folder 7zip and split the files into 250 MB pieces. The files should not be zipped (-mx0) because I want have low disk i/o and just want to synchronize them with amazon s3.
for /f %%f in ('dir /b c:\Test\') do START 7z.exe a %%f.zip -wc:\Test -oc:\TestOutput\ -v250m -mx0 -t7z
The problem is that the output folder is not the folder I specified, it just takes the 7zip folder. Also, the files that I am trying to split, are at least 2.7 GB big, and the output files are only 3MB...
Any ideas to the code?
Also, does anyone know alternative programs that split files and that I can run via batch file? Or tools that do the entire job for me?
Thanks, Patrick