Skip to main content
Module

x/adka/deno.d.ts>Deno.makeTempFileSync

SSG & SSR: Static site generator and server side rendering using JSX.
Latest
function Deno.makeTempFileSync
import { Deno } from "https://deno.land/x/adka@0.1.5/deno.d.ts";
const { makeTempFileSync } = Deno;

Synchronously creates a new temporary file in the default directory for temporary files (see also Deno.dir("temp")), unless dir is specified. Other optional options include prefixing and suffixing the directory name with prefix and suffix respectively.

The full path to the newly created file is returned.

Multiple programs calling this function simultaneously will create different files. It is the caller's responsibility to remove the file when no longer needed.

const tempFileName0 = Deno.makeTempFileSync(); // e.g. /tmp/419e0bf2
const tempFileName1 = Deno.makeTempFileSync({ prefix: 'my_temp' });  // e.g. /tmp/my_temp754d3098

Requires allow-write permission.

Parameters

optional
options: MakeTempOptions

Returns

string