Hello,
as known, you can copy the file's paths by context menu in file result list.
If you select multiple files and do the context menu's copy, a path list of all files is copied to clipboard.
But if there is a space characters inside the file's name or path, the list can NOT handled by a windows file selector box, if it's pasted into it (siehe attached picture).
To do it right, it's necessary to encapsulate each entry with quotation marks.
Example current clipboard content:
D:\file 1.txt
D:\file 2.txt
Example correct clipboard content:
"D:\file 1.txt"
"D:\file 2.txt"
So the handling rule should be:
If multiple files are selected AND a file name/path contains spaces THEN the regarding path has to be encapsulated with quotation marks.
I'm not familiar with other OS than Windows, so I can't say it should be done in general or only in Windows...
Best Regards,
Heiko
This is the correct way
The copy function is not meant to be used with the Windows file selector. It's meant to be used in the following ways:
In the second case, no quotation marks are added because this would make processing the paths by some script or program more complicated.
Also, the quotation marks seem to be a Windows-specific thing. I've never seen them on Linux or macOS.