function ensureLinkSyncimport { ensureLinkSync } from "https://dotland.deno.dev/std@0.181.0/fs/ensure_link.ts"; ensureLinkSync(src: string | URL, dest: string | URL)Ensures that the hard link exists. If the directory structure does not exist, it is created. ExamplesExample 1 import { ensureSymlinkSync } from "https://deno.land/std@0.181.0/fs/mod.ts"; ensureSymlinkSync("./folder/targetFile.dat", "./folder/targetFile.link.dat"); // void Parameterssrc: string | URLthe source file path. Directory hard links are not allowed. dest: string | URLthe destination link path