import { renameSync } from "https://deno.land/x/deno@v0.28.0/cli/js/deno.ts";
Synchronously renames (moves) oldpath
to newpath
. If newpath
already
exists and is not a directory, renameSync()
replaces it. OS-specific
restrictions may apply when oldpath
and newpath
are in different
directories.
Deno.renameSync("old/path", "new/path");