*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->Linux man pages -> mkstemp (3)              
Title
Content
Arch
Section
 

MKSTEMP(3)

Contents


NAME    [Toc]    [Back]

       mkstemp - create a unique temporary file

SYNOPSIS    [Toc]    [Back]

       #include <stdlib.h>

       int mkstemp(char *template);

DESCRIPTION    [Toc]    [Back]

       The mkstemp() function generates a unique temporary file name from tem-
       plate.  The last six characters of template must be  XXXXXX  and  these
       are  replaced with a string that makes the filename unique. The file is
       then created with mode read/write and permissions 0666 (glibc 2.0.6 and
       earlier),  0600	(glibc	2.0.7  and later).  Since it will be modified,
       template must not be a string constant, but should  be  declared  as  a
       character array.  The file is opened with the O_EXCL flag, guaranteeing
       that when mkstemp returns successfully we are the only user.

RETURN VALUE    [Toc]    [Back]

       The mkstemp() function returns the file descriptor fd of the  temporary
       file or -1 on error.

ERRORS    [Toc]    [Back]

       EINVAL The  last  six characters of template were not XXXXXX.  Now tem-
	      plate is unchanged.

       EEXIST Could not create a unique temporary filename.  Now the  contents
	      of template are undefined.

BUGS    [Toc]    [Back]

       The  old  behaviour  (creating a file with mode 0666) may be a security
       risk, especially since other Unix flavours use 0600, and somebody might
       overlook this detail when porting programs.

       Don't  use  this  function, use tmpfile(3) instead. It's better defined
       and more portable.

CONFORMING TO    [Toc]    [Back]

       BSD 4.3, SUSv2

NOTE    [Toc]    [Back]

       The prototype is in <unistd.h> for libc4, libc5, glibc1; glibc2 follows
       the Single Unix Specification and has the prototype in <stdlib.h>.

SEE ALSO    [Toc]    [Back]

      
      
       mktemp(3), tmpnam(3), tempnam(3), tmpfile(3)



GNU				  1993-04-03			    MKSTEMP(3)
[ Back ]
 Similar pages
Name OS Title
mktemp Linux make a unique temporary file name
mkdtemp FreeBSD make temporary file name (unique)
mktemp FreeBSD make temporary file name (unique)
mkstemps FreeBSD make temporary file name (unique)
mktemp OpenBSD make temporary file name (unique)
mkstemps OpenBSD make temporary file name (unique)
mkdtemp OpenBSD make temporary file name (unique)
mkstemp OpenBSD make temporary file name (unique)
mkstemp FreeBSD make temporary file name (unique)
mktemp FreeBSD make temporary file name (unique)
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service