I could really use some help with this as I seem to be getting nowhere on my own. This is my current script for file naming of single album artist albums:
$noop(Artist)
$if2(%albumartist%,%artist%)/
$if(%album%,
$noop(Album Tracks)
$if($eq($or(%originaldate%,%date%),1),
[$left($if2(%originaldate%,%date%),4)] %album% [$left($if2(%date%),4) - %label% - %catalognumber%] [%media%]/,
%album%)/
$if($gt(%totaldiscs%,1),$if(CD%discnumber%/, CD%discnumber%/),)
$num(%tracknumber%,2). %artist% - %title%,
Which gives me this folder structure:
D:-\Music/#Artists [A-Z]\A\ABBA/[1974] Waterloo [1974 - Polydor - 2489 085] [Vinyl]
What I would like to do is create a new folder depending on the release type. For the example used above it would look like this:
D:-\Music/#Artists [A-Z]\A\ABBA\Albums/[1974] Waterloo [1974 - Polydor - 2489 085] [Vinyl]
Or if the album is a compilation of a single artist (anthology):
D:-\Music/#Artists [A-Z]\A\ABBA\Anthology/[2006] Number Ones [2006 - Polydor - 1712219] [CD]
Same goes for Live, Singles and EP’s.
I’ve been messing around with it for a bit but can’t seem to get it to work properly and it’s hard to imagine that this should be so difficult and for someone who’s well-versed in regex it’s probably super-easy.
Any assistance is greatly appreciated!