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: Batch conversion: How to duplicate folder structure of source to desti (Read 1518 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Batch conversion: How to duplicate folder structure of source to desti

Hi all,

Follow-up question:

I have a hard drive full of FLAC albums stored in folders. I would like to batch convert, but %artist% - %album%\%track% - %title% isn't what I want.

Instead of %artist% - %album% I'd like to be able to duplicate the source folder's structure.

[origpath]\[origfilename]

Something like,

C:\FLAC\folder1\folder2\file.flac to C:\MP3\folder1\folder2\file.mp3

What component(s) do I need to make this happen?

Thanks for your help.

Batch conversion: How to duplicate folder structure of source to desti

Reply #1
In the converter:

1. Specify C:\MP3 as output folder.
2. Use a name format that removes the root folder and file extensions from the original path:

Code: [Select]
$replace(%path%,C:\FLAC,,.$ext(%path%),)

Batch conversion: How to duplicate folder structure of source to desti

Reply #2
That's just what I needed. Thank you.