What is it called?

Hello,

I like to create a button that lists/copies all selected files into the clipboard

like this code:

@nofilenamequoting
Clipboard SET {allfile|noext}

it does work but it lists the filenames like this: a b c d

I want it this way:
a
b
c
d (each file name a new line)

I looked for carriage return, new line, break line...I could not find the code for this action.
Can someone please help?

Thanks in advace!

Clipboard COPYNAMES

Should do it.

Hi John,
well it does break the line at the end, but it displays the whole path and the filename - I only want the filename without extention.
This it what it looks like:
E:\01 Privat\02 Directory Opus\Schalter\copy file path.txt

Try:

Clipboard COPYNAMES=nopaths 

As documented in the manual.

thanks,

that worked out !