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 de‐
26 clared 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 to
31 indicate the error.
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 at‐
44 tributes(7).
45
46 ┌────────────────────────────────────────────┬───────────────┬─────────┐
47 │Interface │ Attribute │ Value │
48 ├────────────────────────────────────────────┼───────────────┼─────────┤
49 │mkdtemp() │ Thread safety │ MT-Safe │
50 └────────────────────────────────────────────┴───────────────┴─────────┘
51
53 POSIX.1-2008. This function is present on the BSDs.
54
56 mktemp(1), mkdir(2), mkstemp(3), mktemp(3), tempnam(3), tmpfile(3),
57 tmpnam(3)
58
60 This page is part of release 5.13 of the Linux man-pages project. A
61 description of the project, information about reporting bugs, and the
62 latest version of this page, can be found at
63 https://www.kernel.org/doc/man-pages/.
64
65
66
67GNU 2021-03-22 MKDTEMP(3)