Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/dmm/tests/integration/up-to-date-deps/deps.ts>fs.move

Lightweight Deno Module Manager
Latest
function fs.move
import { fs } from "https://deno.land/x/dmm@v2.1.2/tests/integration/up-to-date-deps/deps.ts";
const { move } = fs;

Moves a file or directory.

Examples

Example 1

import { move } from "https://deno.land/std@0.224.0/fs/mod.ts";

move("./foo", "./bar"); // returns a promise

Parameters

src: string | URL
dest: string | URL
optional
unnamed 2: MoveOptions = [UNSUPPORTED]