Logo

Programming-Idioms

  • Dart
  • C

Idiom #138 Create temp file

Create a new temporary file on the filesystem.

#include <stdlib.h>
const char tmpl[] = "XXXXXX.tmp";
int fd = mkstemp(tmpl);

Template must contain six X characters that will be modified by mkstemp
(ns programming-idioms
  (:import [java.io File]))
(File/createTempFile "prefix" "suffix" (new File "/tmp"))

New implementation...
< >
programming-idioms.org