Search found 2 matches
- 29 Jan 2019 03:11
- Forum: DOS Batch Forum
- Topic: A Little project backing up folders
- Replies: 2
- Views: 3714
Re: A Little project backing up folders
Thanks Phil, That is a comprehensive script. Unfortunately far beyond my understanding. I was going to start simply and build up. Perhaps you can assist with this. ECHO OFF FOR /f "delims=" %%a in (list.txt) do ( ECHO %%a SET /p var= %%a ECHO:%var% robocopy "%var%" F:"%var%" ) This has two problems....
- 24 Jan 2019 16:46
- Forum: DOS Batch Forum
- Topic: A Little project backing up folders
- Replies: 2
- Views: 3714
A Little project backing up folders
Hello everyone, I have just discovered this forum. I have written the odd trivial batch file, nothing sophisticated. My current task is to back up my Music folder on to four USB thumb drives that individually are smaller than the music collection. My pseudo code is below. Please comment on weather t...