I need in a program to use a tmp file. I don't know how to delete that file when the program exits.
How can I do that ?
Thank you!
This is a discussion on Delete file on linux within the Linux Programming forums, part of the Platform Specific Boards category; I need in a program to use a tmp file. I don't know how to delete that file when the ...
I need in a program to use a tmp file. I don't know how to delete that file when the program exits.
How can I do that ?
Thank you!
Call the remove() function, passing the filename to delete.
remove() is a system call ?
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper.
I support http://www.ukip.org/ as the first necessary step to a free Europe.
You have unlink() as a system call.