I’m working on a console program and need to use MoveFile
/CopyFile
to allow moving and copying files and directories (possibly across volumes). The problem of course is that copying or moving a directory to another volume does not work with the aforementioned functions because they are not recursive.
SHFileOperation
will not do because this is a console app and I am using the variations that allow for progress display (MoveFileWithProgress
/CopyFileEx
), and SHFileOperation
uses the GUI for displaying progress instead of the console.
I considered using FindNextFile
, but even then I could not find any examples of code to recursively (Move|Copy)File
with FindNextFile
or otherwise—which is kind of baffling since this issue must have come up before.
Is there an easy way to do this or do I have to resort to reinventing the wheel?