How do you get the filename of a tempfile to use in Linux?
Absolutely: man mkstemp.
The man page has example usage.
You can use the mkstemp(3)
function for this purpose. Another alternative is the tmpfile(3)
function.
Which one of them you choose depends on whether you want the file to be opened as a C library file stream (which tmpfile
does), or a direct file descriptor (mkstemp
). The tmpfile
function also deletes the file automatically when you program finishes.
The advantage of using these functions is that they avoid race conditions between determining the unique filename and creating the file -- so that two programs won't try to create the same file at the same time, for example.
See the man pages for both functions for more details.
The question is how to generate a temporary file name. Neither mkstemp nor tmpfile provide the caller with a name, they return a file descriptor or file handle, respectively.
@garethm:
I believe that the function you're looking for is called tmpnam.
You should definitely not use tmpnam
. It suffers from the race condition problem I mentioned in my answer: Between determining the name and opening it, another program may create the file or a symlink to it, which is a huge security hole.
The tmpnam
man page specifically says not to use it, but to use mkstemp
or tmpfile
instead.