Two methods for generating temporary files in linux
Source: Internet
Author: User
Two methods for generating temporary files in linux: general Linux technology-Linux programming and kernel information. From "Advanced Linux Programming" By Mark Mitchell, Jeffrey Oldham, Alex Samuel.
There are two methods:
1) Use mkstemp. When using this function, the file name must have a naming template ending with six X, for example, char temp_filename [] = "/tmp/temp_file.XXXXXX ". Using this method, temporary files are not automatically deleted. You can call unlink () to reduce the reference count by one, so that the file is automatically deleted when the program is launched.
2) use tmpfile (). This function has been unlinked internally, so you do not need to explicitly subtract one counter.
Note: There are also mktemp, tmpnam and tempnam. But it is not recommended for reliability and security.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service