Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/fs/ensure_file.ts>ensureFileSync

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function ensureFileSync
import { ensureFileSync } from "https://deno.land/std@0.222.1/fs/ensure_file.ts";

Synchronously ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is not modified.

Requires the --allow-read and --allow-write flag.

Examples

Example 1

import { ensureFileSync } from "https://deno.land/std@0.222.1/fs/ensure_file.ts";

ensureFileSync("./folder/targetFile.dat");

Parameters

filePath: string | URL

The path of the file to ensure, as a string or URL.

Returns

void

A void value that returns once the file exists.