How to Copy or Move and go to the destination lister

This will ask you where you want to copy to (like what happens automatically if you click the Copy button when there is no destination window), and will then go to the folder you selected after copying to it:

@set dp = {dlgfolder|Select destination|C:\|noterm}
Copy TO={$dp}
Go {$dp}

This is the same but moves instead of copying:

@set dp = {dlgfolder|Select destination|C:\|noterm}
Copy MOVE TO={$dp}
Go {$dp}

The C:\ in both of them specifies the default path that will be the starting point in the dialog that appears. You can change that to something else if it helps.


Edit 2023: Added |noterm and removed quotes, as quotes are already added automatically.