You are not logged in.
I see the Export allows for the entire list of names and file paths to be sent to the clipboard as one group of text.
Is there a way to export each name individually to the clipboard so that a clipboard manager program takes them as one entry to the clipboard per name?
Subject adjusted to better fit the content
Original: Export Individual File Names to Clipboard?
Offline
Is there a way to export each name individually to the clipboard?
No, there is no way to do this currently.
It might be best for the clipboard manager to implement something like that, e.g. automatically break up the clipboard content into multiple items.
Offline
Is there a way to export each name individually to the clipboard
so that a clipboard manager program takes them as one entry to the clipboard per name?
You can use Powershell afterwards to do this:
Get-Content .\PastedList.txt | ForEach-Object{$_|clip}
With the right modules (or with AutoHotkey) we can even manipulate the clipboard without temp file.
Read the *WIKI* for HELP + MANUAL + Tips&Tricks.
If ReNamer had helped you, please *DONATE* to Denis or buy a PRO license. (Read *Lite vs Pro*)
Offline