Module

x/dax/src/deps.ts>fs.moveSync

Cross-platform shell tools for Deno and Node.js inspired by zx.
Very Popular
Latest
function fs.moveSync
import { fs } from "https://dotland.deno.dev/x/dax@0.39.2/src/deps.ts";
const { moveSync } = fs;

Moves a file or directory synchronously.

Examples

Example 1

import { moveSync } from "https://deno.land/std@$STD_VERSION/fs/mod.ts";

moveSync("./foo", "./bar"); // void

Parameters

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