Exported file has a blank first line

Hi everyone,

I want the Title field of an assortment of songs by different artists to display as Title (Artist), i.e. "Dream On (Aerosmith)"

I have a test.mte File with this content:

$filename(mp3tag-export.txt,utf-8)
$loop(%_path%)%title% (%artist%)
$loopend()

The issue I'm having is that the output file has a blank first line which messes up the Convert->Textfile - Tag operation. I have to manually delete this blank line for the Converter to operate as expected. I then tried export to a csv-File but in it the first row also is blank.

Is there a way to suppress that first blank line on export?

The number of lines in the script are also reflected in the output.
Try

$filename(mp3tag-export.txt,utf-8)$loop(%_path%)%title% (%artist%)
$loopend()

Perfect! Thanks a million

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.