aimp3 play

In the context menu (right-click menu], I'd like to add Aimp3 play,

but both of the following don't work.

D:\Program Files\AIMP3\AIMP3.exe
/ADD_PLAY "%_filename_ext%"

D:\Program Files\AIMP3\AIMP3.exe
/ADD_PLAY "%_path%"

What's the correct parameter?

※ AIMP3 Command line switches

http://scriptogr.am/ukah/post/aimp3-command-line-switches

Usually these work:
"%_path%*.mp3"

or

"%_path%"

or going by the help

/FILE - Add file(s) to the playlist.
[Whether playing of added the files starts, depends on the player settings]
[Input parameters - path to file]
/INSERT - Add objects to the playlist.
[Whether playing of added the files starts, depends on the player settings]
[“object” is a playlist, folder or file]
[Input parameters - the path to objects]

/FILE "%_path%"
or
/INSERT "%_path%"

Thank you very much, stevehero.

The above two parameters seem to work.

No problem. Glad to help out.