Greetings - I am trying to get the Rename Files function to work correctly for a format and path design that matches the output of other tools (Lidarr) to look like this:
[Root] - This is to match my Lidar server output
.|
.Album Artest / Artest (Folder) – (Example: Primus)
…|
…Album Name (Date) (Folder) – (Example: Sailing the Seas of Cheese (1991)
…|
…File Name: Album Artest / Artest [-] Album [-] Trak [-] Title.Ext
…Example: Primus - Sailing the Seas of Cheese - 04 - American Life.flac
This is an example from my download tool:
{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}
Since version 9 and 10 it doesn’t seem as clear as it was to setup the custom string in Java it it is having issues with FLAC file format - I have done a FIX on all files prior to doing the move without errors.
I would like to modify the built-in naming template but add the Year to the album title:
ifnotempty2(albumartist,artist,'/')
+ ifnotempty(album,'/')
+ ifnotempty(artist,' - ')
+ ifnotempty(album,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(trackno,2),' - ')
+ title
However, when doing a preview, I am getting strange naming that has the Top Level Artest show as (Date) and not the name of the Artest?
Z:\Root\(1993)\Primus - Pork Soda - 04 - Bob.flac
Z:\Root\(1993)\Primus - Pork Soda - 05 - DMV.flac
Z:\Root\(1993)\Primus - Pork Soda - 15 - Hail Santa.flac
Z:\Root\(1993)\Primus - Pork Soda - 13 - Hamburger Train.flac
Please let me know what else I need to supply to help find the problem.
Regards!