The line $loop(%_filename_ext%)%title%;%artist%;%album%;%track%;%year%;%_length_seconds%;%_file_size%;%_file_mod_date%;%_folderpath%;%_filename_ext%; $loopend()
determines which fields are sent to the resulting csv file.
Which of the fields do you want to keep and which other fields from the file list are you missing.
The field variable %_length_seconds% may be the one that puzzles you as it writes the length in seconds and not in minutes:seconds.
If you want to get the formatted output, replace %_length_seconds% with %_length%.
You edit the script so that the list of fields contains all the fields that you want to see in the export.
If you are not sure how they are represented in a script then list the names as you think they are called. It would then probably be easy to find the corresponding variable name.
You then save the script and call it from the list of export scripts and open the output as you described in the first post.
And what have you done in the meantime?
The last dump shows 1 entry more in the list of export scripts.
Aren't we talking about an unaltered script called "csv"?
Apparently, you do not have any data in TRACK
If you want to see
then add %genre%;%comment%;%bpm%;%_bitrate%
to the line
so that it becomes $loop(%_filename_ext%)%title%;%artist%;%album%;%track%;%year%;%_length_seconds%;%_file_size%;%_file_mod_date%;%_folderpath%;%_filename_ext%;%genre%;%comment%;%bpm%;%_bitrate% $loopend()
Please show me the actual export script.
The name of the script does not say a lot.
Also, it would help if you told us what you did so far.
The text from the screenshot does not look like it has been generated by a modified sample script with the name "csv" in which only the existing list has been appended by some field variables.
I do not see the contents of an export script in any of the posts following
What I see is a list of names of export scripts.
You would have to select the script name in the list of export scripts and then click the edit button.
Then you see the contents.
And that contents would be of interest for your problem and would also have to be adapted.
As you do not describe what you do (step by step) it is hard if not impossible from the distance to tell what might have gone wrong.
I cannot look over your shoulder.
As others do not see what would happen during the remote access, yet they could benefit from a decent description of the problem plus eventually a possible solution, I would rather deal with the problem in the public forum.
So, the following questions should preferably be answered with "yes" or need a description what happened instead:
Have you selected the files for which you want to get the export?
Have you pressed Ctrl+E?
Did the list of export scripts open?
Did you select the script with the name "csv"?
Did you click on the "edit" button?
Did a text editor window open that shows a text starting with $filename(csv,utf-16)?
Did you replace the string $loop(%_filename_ext%)%title%;%artist%;%album%;%track%;%year%;%_length_seconds%;%_file_size%;%_file_mod_date%;%_folderpath%;%_filename_ext%;
with $loop(%_filename_ext%)%title%;%artist%;%album%;%track%;%year%;%_length%;%_file_size%;%_file_mod_date%;%_folderpath%;%_filename_ext%;%genre%;%comment%;%bpm%;%_bitrate%?