If the file names between your backup & current match, you might be able to automate something...
Restore your backup to a temporary location
Gather both sets of filenames
Use a "touch" utility (found in
CoreUtils, Binaries)
c:/tmp/aqualung.mp3
c:/tmp/locomotive breath.mp3
c:/music/tagged/aqualung.mp3
c:/music/tagged/locomotive breath.mp3
- Code: Select all
touch "c:/music/tagged/aqualung.mp3" --reference="c:/tmp/aqualung.mp3"
touch "c:/music/tagged/locomotive breath.mp3" --reference="c:/tmp/locomotive breath.mp3"
...
You could either gather the names, placing them side by side, like above, using an editor to insert the "touch" at the beginning, the quotes, & the "--reference=" for each line in the file, or you could read the filenames using variables & use a for loop to run through the list, kind of thing...