function ensureFile
ensureFile(filePath: string | URL): Promise<void>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 NOTMODIFIED.
Requires the --allow-read and --allow-write flag.
Examples
Example 1
Example 1
import { ensureFile } from "@std/fs"; ensureFile("./folder/targetFile.dat"); // returns promise
Parameters
Return Type
Promise<void>