Am trying to move a file from source folder to sub-folder, using
Copy MOVE FILE="foo bar sum (64px & 24px).dis" TO "foo bar sum (64px & 24px)"
brings up a selection dialog, when a Quiet operation is needed.
nvm. trial & error, this works
// move to folder
var command = "";
command += 'Copy ';
command += '"' + folderName + '.dis"';
command += ' MOVE TO ';
command += '"' + folderPath + '"';
clickData.func.command.RunCommand(command);
resolves to
Copy "foo bar sum (64px & 24px).dis" MOVE TO "C:\Users\user\somefolder\iconsetfolder\foo bar sum (64px & 24px)"