I have been using a button to move selected files to a folder of the same name with this function
Copy MOVE FILE {filepath$} HERE CREATEFOLDER {file$|noext}
It recently began giving me this error
whenever the selected file has a space in the filename. No spaces, no error. The file is not moved and an empty folder is created that is named from the selected file up to the space.
So a_b_c_d.jpg gets moved to a folder named a_b_c_d as expected.
A file named a b_c_d.jpg gives the error and an empty folder named a is created.
We've fixed this for the next update. {file$|noext} was not adding quotes automatically when needed.
Thanks for reporting it!
Lxp's suggestion is good and will work both with and without the fix. (It won't cause extra quotes to be added after the fix is in place. I've tested that the quotes only get added if they're needed and are missing.)
Using = instead of space between the arguments, as he has done, is also a good idea in case the folder name coincides with another Copy command argument, as it removes that ambiguity.