Let's say I'm creating a program in C that needs to use a tempfile. Creating an ad hoc tempfile in /tmp is probably not a good idea. Is there a function or OS call to supply me with a tempfile name so that I can begin to write and read from it?
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.
Not sure about anything in a C lib, but you can do this at the shell with mktemp.
@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.
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.