function moveSyncimport { moveSync } from "https://dotland.deno.dev/std@0.181.0/fs/mod.ts"; moveSync(src: string | URL,dest: string | URL,unnamed 2?: MoveOptions,)Moves a file or directory synchronously. ExamplesExample 1 import { moveSync } from "https://deno.land/std@0.181.0/fs/mod.ts"; moveSync("./foo", "./bar"); // void Parameterssrc: string | URLdest: string | URLoptionalunnamed 2: MoveOptions = [UNSUPPORTED]