Hey guys,
Love the app but I can't figure out how to rename a folder with the name of the files that are inside it.
Ex:
"Captain America / Captain America / captain america s03e01.mkv"
to become
"Captain America / Captain America s03/ captain america s03e01.mkv"
even if it becomes
"Captain America / Captain America s03e01/ captain america s03e01.mkv" it is ok because I can bulkrename it
Folder rename preset
Re: Folder rename preset
e.g.
Please read FAQ #1 and learn how format expressions work.
Since you're just rewriting the file path using only information already in the file path, Plain File Mode can also work in this case:
Code: Select all
X:/{n}/{n} S{s.pad(2)}/{n} {s00e00} {t}


Code: Select all
{f.dir.dir}/{fn.match(/s\d+/)}/{fn}
Re: Folder rename preset
That worked like magic! Thank you!