Copy Files from Text List with spaces
Solved/Closed
Related:
- Batch file to copy files from a text list
- Windows 10 iso file download 64-bit - Download - Windows
- Error reading cdr file ✓ - Software Forum
- Dvi file - Guide
- Messenger file downloader - Guide
- Ping batch file output to text - Guide
4 responses
athenazob
Posts
5
Registration date
Tuesday September 16, 2008
Status
Member
Last seen
February 27, 2009
8
Feb 27, 2009 at 01:41 AM
Feb 27, 2009 at 01:41 AM
hi,
in fact you should use your original list and modify the "For /F" statement as written downwards:
for /F "delims=" %%a in (C:\Testing.txt) do (
xcopy /Y "%%a" H:\Music\Testing
)
hope it helps you.
in fact you should use your original list and modify the "For /F" statement as written downwards:
for /F "delims=" %%a in (C:\Testing.txt) do (
xcopy /Y "%%a" H:\Music\Testing
)
hope it helps you.