Could you show me a example how to do this?
What is your level of proficiency with computers?
Assuming you are using Windows and can handle files and command prompts...
1. At a command prompt in the folder containing the files you're working on: dir /b /on > filelist.txt
2. Prepend the copy command...
IF your filenames all begin and end the same, like IMG_whatever_whatever.JPG:
- Open filelist.txt in Notepad. Not Wordpad, not Word.
- Ctrl+H for the Search & Replace dialog
- Enter the first part of the filenames for the search. In my example, enter IMG_
- In replace, enter copy followed by a space that same first filename piece. In my example, enter COPY IMG_
- Click the button that makes it do stuff to the whole file
If NOT all the same filename pattern:
- Open that filelist.txt in Notepad++.
Notepad++ Home
- Open a blank tab in Notepad++. Type "
copy " (without the quotes, with the trailing space), hit enter. Select all, copy, paste until you have as many "copy" as you have files. (Easiest to just hold Ctrl+V for a minute to make it repeatedly paste.)
- Hold the Alt key (which gives you block select instead of normal) and select all the "copy " you've just made. Copy to clipboard.
- Switch to the tab with filelist.txt. Place the cursor in line 1, position 1, upper left before the first filename. Paste.
Every file will now be prefaced by "copy ", so each line will look like "copy IMG_20130804_17125.jpg".
3. Append the destination.
- Ctrl+H for the Search & Replace dialog again
- Search for .JPG
- Replace with .JPG F:\FOLDER\WHEREVER (replacing F with the appropriate driveletter and FOLDER\WHEREVER with the appropriate path)
Every line will now look like: "copy IMG_20130804_17125.jpg F:\FOLDER\WHEREVER"
4. Click File, Save As. Make absolutely 100% sure you save it as a .BAT file instead of a .TXT file.
5. Run the .BAT file
Done.