Logo

Programming-Idioms

  • C#
  • Fortran

Idiom #138 Create temp file

Create a new temporary file on the filesystem.

open (newunit=u,status="scratch")
using System.IO;
string file = Path.GetTempFileName();
#include <stdlib.h>
const char tmpl[] = "XXXXXX.tmp";
int fd = mkstemp(tmpl);

Template must contain six X characters that will be modified by mkstemp

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