INTERACT FORUM

More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: flydeep on January 29, 2015, 02:56:18 pm

Title: Syntax for regex mass rename files and folders
Post by: flydeep on January 29, 2015, 02:56:18 pm
Hi - I have a relatively large collection of media that have tags in the folder and filenames, something like:
[- abc -] Foldername/- xyz -Filename.mp3

I would like to mass rename them to:
Foldername/Filename.mp3

I tried few options in Rename, move, replace library tool but guess need to use a regex to make this happen? Can someone point me to the right format for this?

Thanks!
Title: Re: Syntax for regex mass rename files and folders
Post by: 6233638 on January 29, 2015, 03:06:34 pm
If you right-click in the naming box, you can select which fields you want to use to rename the file from a list.
Without more specific examples of what the files are currently named, and what you want them to be, it's difficult to suggest anything more.
Title: Re: Syntax for regex mass rename files and folders
Post by: flydeep on January 29, 2015, 09:08:18 pm
I was able to make some progress for changing a pattern in the folder path. In my example above, I could easily change
[- abc -] Foldername/- xyz -Filename.mp3 to Foldername/- xyz -Filename.mp3

The second part of stripping the value "- xyz -" from the file name so that the result is Filename.mp3 requires a expression in RMC > Filename > Rule. This is where I requested help, what expression do I need to give here to strip a set of characters from the filename string?


If you right-click in the naming box, you can select which fields you want to use to rename the file from a list.
Without more specific examples of what the files are currently named, and what you want them to be, it's difficult to suggest anything more.
Title: Re: Syntax for regex mass rename files and folders
Post by: marko on January 30, 2015, 01:32:13 am
Like that?

(http://www.mpw.scot/pics/ia/20/Snap-019.jpg)

Folder rule: =removeleft(filefolder(),10)
Filename rule: =removeleft(removeright([filename (name)],5),7)

For the filename rule, if they are only three letter extensions, mp3, m4a, wma, etc., change the "5" to a "4"

-marko
Title: Re: Syntax for regex mass rename files and folders
Post by: flydeep on January 30, 2015, 04:26:39 am
This is exactly what I was looking for, thank you!

One question about the regex pattern, is the filename extension (in your example above, it's .flac) retained by the program and you need to pass only the manipulated file root name (like filename(1))? So I assume there is a way to change the file extensions also? Eg change .MKV to .mkv?

Thanks again!

Like that?

(http://www.mpw.scot/pics/ia/20/Snap-019.jpg)

Folder rule: =removeleft(filefolder(),10)
Filename rule: =removeleft(removeright([filename (name)],5),7)

For the filename rule, if they are only three letter extensions, mp3, m4a, wma, etc., change the "5" to a "4"

-marko
Title: Re: Syntax for regex mass rename files and folders
Post by: marko on January 31, 2015, 12:35:42 am
If you want to change the case of the extension, try the following:

Open the "Tag" window in the lower left corner of MC.
If the "Filename (name)" entry is not visible, then, in the tag window, right click > also show > Filename (name)"
Now that you see it, select one file then click in the "Filename (name)" field in the tag window to open it for editing.
Paste the following in there: =clean([filename (name)])
Press enter.

Is that what you want?
If the answer is yes, feel free to select as many files as you like and repeat the steps above. Note, with multiple files selected, the field in the tag window will display [Varies]. It's fine to open that for editing and follow the steps.

If the answer is no, press ctrl+z to undo whatever just happened, then post back explaining what you did, what happened, and why you're not happy. With a wing and a prayer, we should be able to get you sorted.

-marko