[Logo] Jaikoz- Discussion Forum
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Can I get help with my file and folder correct  XML
Forum Index -> Questions
Author Message
CuriousTux

Pro
[Avatar]

Joined: 16/02/2010 18:11:03
Messages: 24
Offline

I was good with my renaming before the new version came out and now I'm lost at how to recreate how I had it before. This is how I would like it. Thanks

Rename Folder from Metadata
rename mask
Artist - Album
ex. Artist - Album

compilation rename mask
Album Artist - Album
ex. Various Artists - Album

Rename File from Metadata
rename mask
Track No - Title
ex. 01 - Title

compilation rename file from Metadata
Track No - Artist - Title
ex. 01 - Artist - Title
Cedrix



Joined: 24/06/2011 07:33:01
Messages: 8
Offline

Hello,

Here is a way to achieve what you want, assuming that - is not for folder separator in your example.

Rename Folder from Metadata:
(albumartist.length>0 ? albumartist : (artist.length>0 ? artist : '')) + ' - ' + album

Rename Folder from Metadata (Compilation):
'Various Artists' + ' - ' + album

Rename File from Metadata:
(trackno.length>0 ? trackno + ' - ' :'') + title

Rename File from Metadata (Compilation):
(trackno.length>0 ? trackno + ' - ' :'') + (artist.length>0 ? artist + ' - ' : ' ') + title


Hope it helps.

Cheers
CuriousTux

Pro
[Avatar]

Joined: 16/02/2010 18:11:03
Messages: 24
Offline

Thanks so much Cedrix that helped me out alot.
 
Forum Index -> Questions
Go to:   
Powered by JForum 2.1.6 © JForum Team