by Luuk » Sun Jun 05, 2022 5:07 am
First to put a checkmark inside for the menu "Renaming Options, Advanced Options, Allow Using \ in Renaming Criteria".
Then RegEx(1) needs a checkmark inside "v2", so then your "Match" and "Replace" could look something like...
^IMG-((?:19|20)\d\d)(0[1-9]|1[012])\d\d-WA\d+$
..\\..\\$1\\$2\\$0
This does only make the month-folders like...
M:\Photos\iCloud\2022\06-June\IMG-20180512-WA0001.jpg ===> M:\Photos\iCloud\2018\05\IMG-20180512-WA0001.jpg
M:\Photos\iCloud\2022\06-June\IMG-20191211-WA0001.jpg ===> M:\Photos\iCloud\2019\12\IMG-20191211-WA0001.jpg
If needing month-folders with words, then first must decide on all of the spellings below, then use a Match and Replace more like...
^IMG-((?:19|20)\d\d)(0[1-9]|1[012])\d\d-WA\d+$(?X):01(?X):02(?X):03(?X):04(?X):05(?X):06(?X):07(?X):08(?X):09(?X):10(?X):11(?X):12
..\\..\\$1:$2\\$0(?X)\\01-Jan(?X)\\02-Feb(?X)\\03-Mar(?X)\\04-Apr(?X)\\05-May(?X)\\06-Jun(?X)\\07-July(?X)\\08-Aug(?X)\\09-Sep(?X)\\10-Oct(?X)\\11-Nov(?X)\\12-Dec
This to make the month-folders like...
M:\Photos\iCloud\2022\06-June\IMG-20180512-WA0001.jpg ===> M:\Photos\iCloud\2018\05-May\IMG-20180512-WA0001.jpg
M:\Photos\iCloud\2022\06-June\IMG-20191211-WA0001.jpg ===> M:\Photos\iCloud\2019\12-Dec\IMG-20191211-WA0001.jpg