tmpfile - create a temporary file
#include <stdio.h>
FILE *tmpfile(void);
[CX] The functionality described on this reference page is aligned with the ISO C standard. Any conflict between the requirements described here and the ISO C standard is unintentional. This volume of IEEE Std 1003.1-2001 defers to the ISO C standard.The tmpfile() function shall create a temporary file and open a corresponding stream. The file shall be automatically deleted when all references to the file are closed. The file is opened as in fopen() for update (w+).
[CX] In some implementations, a permanent file may be left behind if the process calling tmpfile() is killed while it is processing a call to tmpfile().
An error message may be written to standard error if the stream cannot be opened.
Upon successful completion, tmpfile() shall return a pointer to the stream of the file that is created. Otherwise, it shall return a null pointer [CX] and set errno to indicate the error.
The tmpfile() function shall fail if:
- [EINTR]
- [CX] A signal was caught during tmpfile().
- [EMFILE]
- [CX] {OPEN_MAX} file descriptors are currently open in the calling process.
- [ENFILE]
- [CX] The maximum allowable number of files is currently open in the system.
- [ENOSPC]
- [CX] The directory or file system which would contain the new file cannot be expanded.
- [EOVERFLOW]
- [CX] The file is a regular file and the size of the file cannot be represented correctly in an object of type off_t.
The tmpfile() function may fail if:
- [EMFILE]
- [CX] {FOPEN_MAX} streams are currently open in the calling process.
- [ENOMEM]
- [CX] Insufficient storage space is available.
Creating a Temporary File
The following example creates a temporary file for update, and returns a pointer to a stream for the created file in the fp variable.
#include <stdio.h> ... FILE *fp;
fp = tmpfile ();
It should be possible to open at least {TMP_MAX} temporary files during the lifetime of the program (this limit may be shared with tmpnam()) and there should be no limit on the number simultaneously open other than this limit and any limit on the number of open files ( {FOPEN_MAX}).
None.
None.
fopen(), tmpnam(), unlink() , the Base Definitions volume of IEEE Std 1003.1-2001, <stdio.h>
First released in Issue 1. Derived from Issue 1 of the SVID.
Large File Summit extensions are added.
The last two paragraphs of the DESCRIPTION were included as APPLICATION USAGE notes in previous issues.
Extensions beyond the ISO C standard are marked.
The following new requirements on POSIX implementations derive from alignment with the Single UNIX Specification:
In the ERRORS section, the [EOVERFLOW] condition is added. This change is to support large files.
The [EMFILE] optional error condition is added.
The APPLICATION USAGE section is added for alignment with the ISO/IEC 9899:1999 standard.