Context Menu: Move File to Different Directory

I would like to move a file to a different directory not actually open in a lister via the context menu. In addition, I want to make sure the file is no longer in the original source directory. Here's what I'm trying without success:

Copy MOVE FILE "{filepath$}\*" to="F:\Users\Chuck\Downloads Delete

What am I missing?

All you need to have (to move the selected file/s) is :

Copy TO "F:\Users\Chuck\Downloads" MOVE 

There's no need to try and delete afterwards, the move argument takes care of that.

Thanks Steve!