Logo

Programming-Idioms

History of Idiom 138 > diff from v16 to v17

Edit summary for version 17 by phrank:
New C implementation by user [phrank]

Version 16

2019-09-27, 08:32:26

Version 17

2019-09-27, 19:03:43

Idiom #138 Create temp file

Create a new temporary file on filesystem.

Idiom #138 Create temp file

Create a new temporary file on filesystem.

Imports
#include <stdlib.h>
Code
char tmpl[] = "XXXXXX.tmp";
int fd = mkstemp(tmpl);
Comments bubble
Template must contain six X characters that will be modified by mkstemp
Doc URL
https://pubs.opengroup.org/onlinepubs/9699919799/functions/mkdtemp.html