-
Hi! I can't get beets to move my multidisc album files into 'Disc N' dirs. I've used the basic FAQ config:
Beet list seems to get it right, including the %if{}:
But then beet move does nothing:
And files remain in one directory:
Why might the %if{} in my path spec not be matching the CLI list behaviour? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Hello! I really have no idea, that snippet works perfectly in my config. The only thing I can think of is to check that |
Beta Was this translation helpful? Give feedback.
-
Since your files are all going under the
That is, using the same path for |
Beta Was this translation helpful? Give feedback.
-
Yes, this works!
Thanks!
I believe it would help to at least put a pointer in the FAQ to help inexperienced users like myself with the fact that there are more elements in the path config than just the one in the documentation which illustrates the used technique.
Pieter
…________________________________
From: Adrian Sampson ***@***.***>
Sent: Wednesday, May 31, 2023 12:45:53 AM
To: beetbox/beets ***@***.***>
Cc: Pieter Lenaerts ***@***.***>; Author ***@***.***>
Subject: Re: [beetbox/beets] %if{} in my path spec not working for multidisc albums (Discussion #4806)
Since your files are all going under the Compilations directory, I think the problem is that you are only configuring the default path and not overriding the comp one that comes with the default configuration. Can you try something like this?
paths:
comp: $albumartist/$album%aunique{}/%if{$multidisc,Disc $disc/}$track $title
default: $albumartist/$album%aunique{}/%if{$multidisc,Disc $disc/}$track $title
That is, using the same path for comp. Or you could set the compilation flag on this album to false.
—
Reply to this email directly, view it on GitHub<#4806 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ADNFRLRGYKPAZX77MQ4BG7DXIZ2CDANCNFSM6AAAAAAYSNWIEM>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
Since your files are all going under the
Compilations
directory, I think the problem is that you are only configuring thedefault
path and not overriding thecomp
one that comes with the default configuration. Can you try something like this?That is, using the same path for
comp
. Or you could set the compilation flag on this album to false.