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