Quote:
Originally Posted by SAM2712
I want all files in one archive written in text file.
|
ok the idea will be that you will copy / move all files you want in new directory then using arc to compress the hole folder
if you will run from bat file use this
for /f "delims=" %%I in (paths.txt) do copy "%%I" "C:\folder_to_compress_with_arc"
if you will run from cmd use this
for /f "delims=" %I in (paths.txt) do copy "%I" "C:\folder_to_compress_with_arc"
it will take all files paths from path.txt file & copy / move it to new directory "C:\folder_to_compress_with_arc" then you can compress it using arc