Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #138 Create temp file

Create a new temporary file on the filesystem.

{
  "dependencies": "tempy^1.0.1"
}

import tempy from 'tempy'
const tempFile = tempy.file()
{
  "dependencies": "tempy^1.0.1"
}

import tempy from 'tempy'
const resultOfCallback = tempy.file.task(tempFile => {
 // do something with tempFile
})

tempFile is automatically cleaned up after the callback is executed. resultOfCallback is the return value of the callback.
#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