Skip to main content
Module

x/deno/js/rename.ts>rename

A modern runtime for JavaScript and TypeScript.
Go to Latest
function rename
import { rename } from "https://deno.land/x/deno@v0.17.0/js/rename.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");

Parameters

oldpath: string
newpath: string

Returns

Promise<void>