1MKDTEMP(3) Linux Programmer's Manual MKDTEMP(3)
2
3
4
6 mkdtemp - create a unique temporary directory
7
9 #include <stdlib.h>
10
11 char *mkdtemp(char *template);
12
13 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
14
15 mkdtemp():
16 /* Since glibc 2.19: */ _DEFAULT_SOURCE
17 || /* Glibc 2.19 and earlier: */ _BSD_SOURCE
18 || /* Since glibc 2.10: */ _POSIX_C_SOURCE >= 200809L
19
21 The mkdtemp() function generates a uniquely named temporary directory
22 from template. The last six characters of template must be XXXXXX and
23 these are replaced with a string that makes the directory name unique.
24 The directory is then created with permissions 0700. Since it will be
25 modified, template must not be a string constant, but should be
26 declared as a character array.
27
29 The mkdtemp() function returns a pointer to the modified template
30 string on success, and NULL on failure, in which case errno is set
31 appropriately.
32
34 EINVAL The last six characters of template were not XXXXXX. Now tem‐
35 plate is unchanged.
36
37 Also see mkdir(2) for other possible values for errno.
38
40 Available since glibc 2.1.91.
41
43 For an explanation of the terms used in this section, see
44 attributes(7).
45
46 ┌──────────┬───────────────┬─────────┐
47 │Interface │ Attribute │ Value │
48 ├──────────┼───────────────┼─────────┤
49 │mkdtemp() │ Thread safety │ MT-Safe │
50 └──────────┴───────────────┴─────────┘
52 POSIX.1-2008. This function is present on the BSDs.
53
55 mktemp(1), mkdir(2), mkstemp(3), mktemp(3), tempnam(3), tmpfile(3),
56 tmpnam(3)
57
59 This page is part of release 4.15 of the Linux man-pages project. A
60 description of the project, information about reporting bugs, and the
61 latest version of this page, can be found at
62 https://www.kernel.org/doc/man-pages/.
63
64
65
66GNU 2016-07-17 MKDTEMP(3)