Skip to main content
Deno 2 is finally here πŸŽ‰οΈ
Learn more
Module

x/gustwind/server-deps.ts>fs.ensureFileSync

πŸ³πŸ’¨ – Deno powered site creator
Go to Latest
function fs.ensureFileSync
import { fs } from "https://deno.land/x/gustwind@v0.57.5/server-deps.ts";
const { ensureFileSync } = fs;

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.224.0/fs/mod.ts";

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

Parameters

filePath: string | URL