Search found 1 match
- 17 May 2019 11:24
- Forum: DOS Batch Forum
- Topic: Copying and renaming files with same name
- Replies: 1
- Views: 2204
Copying and renaming files with same name
Hello guys! I recently made a script that copies every single file from a folder - no matter if it's inside another folder in this folder - to another folder of my choice, so I can see all the files in a single place. Here it is: For /r "c:\source" %d in (*) do copy "%d" "E:\destiny" The problem is,...