I have been attempting to save folders in a multidisc album as 1, 2, 3 etc, rather than Disc 1, Disc 2, Disc 3, etc. How do I do that? I can’t seem to figure this out.
Thank you.
I have been attempting to save folders in a multidisc album as 1, 2, 3 etc, rather than Disc 1, Disc 2, Disc 3, etc. How do I do that? I can’t seem to figure this out.
Thank you.
What is your rename mask?
Okay, so make sure you have the mask you are using in Rename mask selected in the Filename Masks option at bottom and select Edit
Then modify mask from
ifnotempty2(albumartist,artist,'/')
+ ifnotempty(album,'/')
+ ifmultidisc('Disc ' + ifnotempty(pad(discno,2),'/'))
+ ifnotempty2(albumartist,artist,' - ')
+ ifnotempty(album,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(trackno,2),' - ')
+ title
to
ifnotempty2(albumartist,artist,'/')
+ ifnotempty(album,'/')
+ ifmultidisc(ifnotempty(pad(discno,2),'/'))
+ ifnotempty2(albumartist,artist,' - ')
+ ifnotempty(album,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(trackno,2),' - ')
+ title
and select OK and it should now work for you.
Thank you. That did it. I am not sure how it reverted because I had it this way before, but I had to reinstall my operating system and I had forgotten how to do this.
I appreciate the help.