I have a music library organised //.wma and want to export for all albums a tracklist file /info.htm
How do I do this?
I tried
Export file name: $regexp(%_folderpath%,'[^\\\\]'*\\\\$,)info.htm
[ ] Append data
[X] One file per directory
but this causes each disc to get a separate file that overwrites the previous, and
Export file name: $regexp(%_folderpath%,'[^\\\\]'*\\\\$,)info.htm
[X] Append data
[X] One file per directory
duplicates the file header and footer upon each disc.
[X] One file per directory
This option tells Mp3tag to create a new file for each new directory it encounters. What you're trying to approach is not possible using this option (and I can't think of a batch operation which might accomplish this at the moment).
Kind regards,
Florian
Thanks Florian. I have found a batch workaround: an Action Group with three Exports, all '[X] One File per Directory':
- writes the file header
- appends the body for each disc
- appends the footer, plus unfortunately an redundant footer for each disc past 1
If anyone can suggest a fix to 3, please do!