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