Button to send the contents of a folder to an app?

When I right click on a folder I get the option to send the contents to my mp3 file tagger. The app opens the files in the dir that I right clicked on.

Is it possible to do the same in a button on a toolbar?

Yes. Have a look here:

https://www.gpsoft.com.au/help/opus12/index.html#!Documents/Codes_for_passing_filenames.htm

Assuming you are using Mp3tag, the button could look like this:

@nodeselect 
"/programfilesx86/Mp3tag/Mp3tag.exe" /fp:{filepath}
Button as XML
<?xml version="1.0"?>
<button backcol="none" display="both" label_pos="right" textcol="none">
	<label>Mp3tag</label>
	<icon1>/programfilesx86/Mp3tag/Mp3tag.exe,0</icon1>
	<function type="normal">
		<instruction>@nodeselect </instruction>
		<instruction>&quot;/programfilesx86/Mp3tag/Mp3tag.exe&quot; /fp:{filepath}</instruction>
	</function>
</button>
How to

How to use buttons and scripts from this forum

Thanks and yes using mp3tag :slight_smile: