Renaming multiple PNG and JPG files
Moderators: Hacker, petermad, Stefan2, white
Renaming multiple PNG and JPG files
Hello everyone.
I am a user zero experience and new using to TC. I would like to rename multiple .png and .jpg files into one folder, but I still don't understand how to do it.
Image: https://i.postimg.cc/KcsZ6jw5/Capture.png
I would like to rename the files like this:
picture_(number) to Picture_number without () the parentheses and listed with order from 00 to the last
I hope can help me, Thanks in advance!
I am a user zero experience and new using to TC. I would like to rename multiple .png and .jpg files into one folder, but I still don't understand how to do it.
Image: https://i.postimg.cc/KcsZ6jw5/Capture.png
I would like to rename the files like this:
picture_(number) to Picture_number without () the parentheses and listed with order from 00 to the last
I hope can help me, Thanks in advance!
Re: Renaming multiple PNG and JPG files
If you need just remove "()":
1. select all files
2. open Multi-Rename Tool (CTRL+M) with default settings
3. type (or copy from here and paste)
into "Search for:" field
press "Start"
1. select all files
2. open Multi-Rename Tool (CTRL+M) with default settings
3. type (or copy from here and paste)
Code: Select all
(|)
press "Start"
Last edited by Gral on 2021-08-11, 16:27 UTC, edited 1 time in total.
Re: Renaming multiple PNG and JPG files
Search for:(that is opening parenthesis, pipe character, closing parenthesis)
Replace with:(or empty)
Regards
Dalai
Code: Select all
(|)
Replace with:
Code: Select all
<Clear>
Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Re: Renaming multiple PNG and JPG files
I would like to remove the parentheses but also list the files correctly. I have duplicate files e.g.: picture_(2).jpg / picture_(2).png. I would like to rename my files sorted correctly. Thank you!Gral wrote: 2021-08-11, 16:26 UTC If you need just remove "()":
1. select all files
2. open Multi-Rename Tool (CTRL+M) with default settings
3. type (or copy from here and paste)into "Search for:" fieldCode: Select all
(|)
press "Start"
Re: Renaming multiple PNG and JPG files
If you need re-number all files to exactly two-digits names it's more complicated:
Type
in "Rename mask: file name"
Type
In "Search For:"
and
in "Replace with"
RegEx checked!
EDIT
If you need full re-numbered names type
in "Rename mask: file name"
set counter properties on right side of window.
Type
Code: Select all
Picture_0[C+1/2]
Type
Code: Select all
(\d)(\d)(\d)
and
Code: Select all
$2$3
RegEx checked!
EDIT
If you need full re-numbered names type
Code: Select all
Picture_[C]
set counter properties on right side of window.
Re: Renaming multiple PNG and JPG files
Thanks this almost fixes my problem just for this (files numerated start with 1 digit but after 99 starts with 01):Gral wrote: 2021-08-11, 16:37 UTC If you need re-number all files to exactly two-digits names it's more complicated:
Typein "Rename mask: file name"Code: Select all
Picture_0[C+1/2]
TypeIn "Search For:"Code: Select all
(\d)(\d)(\d)
andin "Replace with"Code: Select all
$2$3
RegEx checked!
EDIT
If you need full re-numbered names typein "Rename mask: file name"Code: Select all
Picture_[C]
set counter properties on right side of window.
Image: https://i.postimg.cc/hjx7vYw2/Capture.png
picture_1.jpg
picture_01.jpg
Re: Renaming multiple PNG and JPG files
Only part after "EDIT" apply here!
Leave "Search"/"Replace" fields empty!If you need full re-numbered names typein "Rename mask: file name"Code: Select all
Picture_[C]
set counter properties on right side of window.
Re: Renaming multiple PNG and JPG files
Yes! it works! Thanks a lot for your time and patience. that did the trick and now my images are numbered correctly!Gral wrote: 2021-08-11, 16:58 UTC Only part after "EDIT" apply here!
Leave "Search"/"Replace" fields empty!If you need full re-numbered names typein "Rename mask: file name"Code: Select all
Picture_[C]
set counter properties on right side of window.