View Single Post
  #1  
Old 13-09-2016, 12:49
aswadd's Avatar
aswadd aswadd is offline
Registered User
 
Join Date: Aug 2016
Location: Egypt
Posts: 316
Thanks: 84
Thanked 162 Times in 98 Posts
aswadd is on a distinguished road
Quote:
Originally Posted by SAM2712 View Post
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
Reply With Quote
The Following User Says Thank You to aswadd For This Useful Post:
SAM2712 (18-09-2016)
Sponsored Links