did you actually consider searching the MSDN API docs for "delete (file)", you would have surely come up with plenty of different ways. The more portable ones are using unlink or even a system call to execute a platform specific command such as del/ete.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2006-05-25
unlink() is a Unix function. The preferred ISO version is remove().
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
At least an basic knowledge of the standard library is probably useful, you will not progress particularly fast if you cannot resolve such simple issues on your own. Get yourself a good paper based reference in the meantime, http://www.cppreference.com is a reasonable summary.
Clifford
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi
Somebody can prompt the command for file delete?
"file_file_go_away__do_not_comeback_another_day"
did you actually consider searching the MSDN API docs for "delete (file)", you would have surely come up with plenty of different ways. The more portable ones are using unlink or even a system call to execute a platform specific command such as del/ete.
unlink() is a Unix function. The preferred ISO version is remove().
http://www.cppreference.com/stdio/remove.html
At least an basic knowledge of the standard library is probably useful, you will not progress particularly fast if you cannot resolve such simple issues on your own. Get yourself a good paper based reference in the meantime, http://www.cppreference.com is a reasonable summary.
Clifford