Copy File Names in DIR to Clipboard

can you add a function to copy all file names to the clipboard so that all file names can be copied and then pasted to say notepad or excel. I find I want to list lots of file names as text files and don't want to be copy and pasting each individual file.

Of course if this is already included in OPUS 10 then let me know what I missed.
thanks.

Edit -> Copy File Names / Copy Full Pathnames

so it is.
Great.

Thank you.

You can copy all selected items to the clipboard using Clipboard COPYNAMES
You can paste following code into a toolbar in customize mode. LMB does a file name copy with full path,
RMB copies the file names only.

<?xml version="1.0"?> <button backcol="none" display="both" textcol="none" type="three_button"> <label>Copy Names to Clipboard</label> <icon1>#clipcopy</icon1> <button backcol="none" display="both" textcol="none"> <label>Clipboard Names Paths</label> <icon1>#newcommand</icon1> <function type="normal"> <instruction>Clipboard COPYNAMES</instruction> </function> </button> <button backcol="none" display="both" textcol="none"> <label>Clipboard Names Nopaths</label> <icon1>#newcommand</icon1> <function type="normal"> <instruction>Clipboard COPYNAMES=nopaths</instruction> </function> </button> </button>

You can also make a button and a filter that uses the Print FOLDER command to copy all the files in the current folder to the clipboard... or to a file for that matter. No ways is really better than another - but with Print FOLDER you don't need to first "select" the files, if indeed you want to get ALL of the filenames in the folder onto the clipboard...