Add folder to Winamp's playlist

How can I add a folder+subs (which includes MP3) to Winamp's playlist?

E.g. "winamp.exe /enqeue {filepath$}" doesn't work.

Enqueue in Winamp

"%ProgramFiles%\Winamp\Winamp.exe" /ADD {F}

that should work

Thanks for answer. Unfortunately it doesn't work.

I add it to folder-context-menu and tried it, but in Winamp there's only shown the parameter "F" as a file.

Edit: It works if I configure command as button, but not, if I add it to context menu (because it's an external command then). Any solution for this method?

<?xml version="1.0"?> <button display="both" effect="gray"> <guid>{885C60CE-FFE0-4187-8962-25FA00FAE96F}</guid> <label>Enqueue in Winamp</label> <tip>Enqueue selected files in Winamp</tip> <icon1>%ProgramFiles%\Winamp\Winamp.exe,0</icon1> <function type="normal"> <instruction>"%ProgramFiles%\Winamp\Winamp.exe" /ADD {F}</instruction> </function> </button>
strange, this button works with me, did you try to replace {F} by %* ?

Same thing if i add to context menu using Standard Function (Opus or external)

Please read above edited too.

What I meant with contextmenu:

Prefs > Datatypes > All folders

EDIT: Aaargh, because it's external the right parameter is as you wrote:

winamp.exe /enqeue "%1" (not %*)

Thanks again.