Skip to main content
Module

x/enzastdlib/vendor/@deno-std-fs.ts>move

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
function move
import { move } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-std-fs.ts";

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]