Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/js/lib.deno_runtime.d.ts>Deno.rename

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.rename
import { Deno } from "https://deno.land/x/deno@v0.28.0/cli/js/lib.deno_runtime.d.ts";
const { rename } = Deno;

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>