I'm using CopyFileEx
to copy files with that ability. Is there anything like it for moving files? Remember that not every move is fast – moving to a different drive is actually a copy.
The solution I have now is to copy-and-delete-the-original if the move is to a different root directory, and to simply move (and hope it's really just a change in the pointer to the file) if it's to the same root directory.
Is there a straightforward solution (like CopyFileEx
)?