Programmaticaly delete a file.
C / C++ / MFC
7
Posts
5
Posters
0
Views
1
Watching
-
Hi all, I am writing a program that requires deleting a file stored in the disk programmatically .I am wondering if we can do that? Could somebody help me on this. Regards.
Try
DeleteFile
Jens -
Try
DeleteFile
Jens -
You also have SHFileOperation() at your disposal.
-
You also have SHFileOperation() at your disposal.
-
Or, the CRT function remove(). onwards and upwards...