Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: A renaming problem (Read 4522 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: A renaming problem

Reply #25
You are missing a percentage sign
The filename pattern used is [%year% - ]%artist%\%album\[%discnumber]\%filename%
Should be [%year% - ]%artist%\%album\[%discnumber%]\%filename%

Re: A renaming problem

Reply #26

fixed...discnumber still not populated.

Re: A renaming problem

Reply #27
Bah, I missed that you had missed the percentage sign from another tag too:
[%year% - ]%artist%\%album%\[%discnumber%]\%filename%

Re: A renaming problem

Reply #28

Sorry! My bad. Thanks for spotting it. Looks much better...
(still wish foobar would read them values from the cue file though! - Its EAC that put them there btw.)

Re: A renaming problem

Reply #29
One more correction
move \ inside the conditional [%discnumber%]
Code: [Select]
[%year% - ]%artist%\%album%\[%discnumber%\]%filename%
to prevent a double \\ if %discnumber% doesn't exist.

X
korth

Re: A renaming problem

Reply #30
Thank you!