Renaming Folder

Hi, I've been trying to figure out if there is a way to rename folders to %artist - %albumtitle format taken from ID Tags but, if Various Artists/Various/VA is present in album artist tag, the folder would be renamed as VA - %albumtitle?

Looking forward for your help. Thank you very much!

you could try the function Convert>tag-Tag for _DIRECTORY
Format string: $if($eql($replace(%artist%,Various Artists,VA,Various,VA),'VA'),'VA',%artist%) - %album%

1 Like

I had to edit it a bit to make it work in case anyone wants to do the same the string should be:

$if($eql($replace(%albumartist%,Various Artists,VA,Various,VA),'VA'),'VA',%artist%) - %album%

Thank you very much for your help, I really appreciate it.