I'm using MoveFileEx to move a file. depending on what the user inputs, where it moves the files might be on a seperate hard drive. under this circumstance MoveFileEx fails with GetLastError reporting error ID 17, which is:
ERROR_NOT_SAME_DEVICE 17 (0x11) The system cannot move the file to a different disk drive. (http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx)
so, how, in VC++ would I go about handling a situation like this, and move the file, even if it's on a seperate hard drive?
the code I'm using is here: https://gist.github.com/Whitetigerswt/9180030 (although it's not relevant I think, everything works great except when moving files to another hard drive.)
The documentation for MoveFileEx makes this clear:
So if the source drive is not the same as the destination drive, simply or the
MOVEFILE_COPY_ALLOWED
flag intodwFlags
.