I use the below command to delete some files after reboot the machine:
MoveFileEx(PChar(File_Address), Nil, MOVEFILE_DELAY_UNTIL_REBOOT);
How can i cancel execution of this command and prevent files from deleting after reboot?
|
Files you enqueue for deletion this way are placed in the registry under |
|||||
|
|
I guess you could copy the file (since it hasn't been deleted yet) and then use
to put it back in place during the reboot. As Ken White has pointed out, though, it would be much much better to avoid this situation in the first place. |
|||||
|
MoveFileExto delete the file in the first place until you're absolutely sure you want to delete it. – Ken White Oct 15 '11 at 15:36