Search found 2 matches

by whizkid667
24 May 2012 00:16
Forum: DOS Batch Forum
Topic: Issue With For Loop
Replies: 2
Views: 3311

Re: Issue With For Loop

Thanks a lot Squashman for the prompt reply.
Worked like a charm :)
by whizkid667
23 May 2012 10:06
Forum: DOS Batch Forum
Topic: Issue With For Loop
Replies: 2
Views: 3311

Issue With For Loop

I wrote a batch file to recursively create subfolders, based on the data taken from a list. set BackupFileDir=BackupFiles if not exist %BackupFileDir% mkdir %BackupFileDir% for %%x in (A1 B2 C3) do ( echo %%x >>Log.log set MyFolder=%%x echo %MyFolder% >>Log.log set ActualDiffFolder=%BackupFileDir%\%...