Logo

Programming-Idioms

  • Java
  • Perl

Idiom #138 Create temp file

Create a new temporary file on the filesystem.

use Path::Tiny qw(tempfile);
my $path = tempfile;

Returns a Path::Tiny object. To return the path as a string, call tempfile->stringify.
import File::Temp qw(tempfile);
my $fh = tempfile();
# or
my ($fh, $filename) = tempfile();


Core module File::Temp provides many different options from creating temporary files. This is the simplest. $fh is a file handle.
$filename is a path and file name.
import java.io.File;
File tempFile = File.createTempFile("prefix-", "-suffix");
tempFile.deleteOnExit();

This will create a File with a name like "prefix-6340763779352094442-suffix"
#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