I have button to move files by extensions.
Copy MOVE HERE CREATEFOLDER {file$|ext2}
But I have problem when files are zip, files are move in zip
Test.zip -> Test.zip.zip
ZIP
is an argument for the copy command. (It's renamed ARCHIVE
these days, but the old name still works to keep old buttons from breaking.)
Add an =
to make it explicit that the extension is a parameter of the CREATEFOLDER
argument, and not an argument of its own:
Copy MOVE HERE CREATEFOLDER={file$|ext2}
Thanks