I would like to automatically create folder names when I use the "Convert Tag to Filename" function. I have figured out the basic method of doing this, but I have ran into a problem that I can't figure out.
I work in radio so most of my files look something like this:
Artist: Maroon 5
Title: Girls Like You (Radio Edit)
Album: Girls Like You (Promo CD Single)
Year: 2020
Artist: Maroon 5
Title: Girls Like You (Radio Edit - No Rap) (New Master)
Album: Girls Like You (Promo CD Single)
Year: 2020
Artist: Maroon 5
Title: Girls Like You (Instrumental)
Album: Girls Like You (WAV from label)
Year: 2020
I have multiple versions of the same title with the version name in parentheses included in the %title% field.
Using the song above as an example, I would like Mp3tag to create one folder called:
Maroon 5 - Girls Like You [2020]
and put all of the various versions of this song into that folder.
The problem I have now is that it creates multiple folders (one for each version) because I can't figure out how to strip out the version number in the folder name.
The string I'm currently using is:
C:\Users\djnic\Desktop\Music%artist% - %title% '['%year%']'%artist% - %title% '['%year%']'
(Note: in my string I have a \ between '['%year%']' and %artist% to separate the folder name and the file name but it gets stripped out when I paste it into this post}
I need to strip out anything in parentheses in the "title" field when it creates the folder name. I want the version name in parentheses to stay in the file name, but not in the folder name.
Any help would be appreciated.