Whittie
Member
Registered: 11th Aug 06
Location: North Wales Drives: BMW, Corsa & Fiat
User status: Offline
|
350 images have the word copy on them, need to take it off.... is there a quicker way than renaming and deleting copy?
Ta
|
Cavey
Member
Registered: 11th Nov 02
Location: Derby
User status: Offline
|
Search for batch or bulk rename or something like that should find something useful
|
Balling
Premium Member
Registered: 7th Apr 04
Location: Denmark
User status: Offline
|
Doesn't Windows have an equivalent of Automator on Mac's?
I know you can do batch file renames with that.
|
Whittie
Member
Registered: 11th Aug 06
Location: North Wales Drives: BMW, Corsa & Fiat
User status: Offline
|
All the file names are different, just have copy on the end of them...
|
Balling
Premium Member
Registered: 7th Apr 04
Location: Denmark
User status: Offline
|
Ah, so you can't rename them "Filename001" etc?
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
Powershell, below should work -
code: dir *.jpeg | mi -dest {($_.Basename -replace 'copy','').Trim() + $_.Extension}
Otherwise, http://www.bulkrenameutility.co.uk
[Edited on 27-03-2013 by Dom]
|
Whittie
Member
Registered: 11th Aug 06
Location: North Wales Drives: BMW, Corsa & Fiat
User status: Offline
|
quote: Originally posted by Balling
Ah, so you can't rename them "Filename001" etc?
No, they've got to relate to a URL on a website, they're product codes, so need them named properly, unfortunately.
quote: Originally posted by Dom
Powershell, below should work -
code: dir *.jpeg | mi -dest {($_.Basename -replace 'copy','').Trim() + $_.Extension}
Otherwise, http://www.bulkrenameutility.co.uk
[Edited on 27-03-2013 by Dom]
Awesome mate, will give it a go, thanks.
|