--- title: "@std/fs" description: "Helpers for working with the file system" jsr: jsr:@std/fs pkg: fs version: 1.0.23 generated: true stability: stable --- ## Overview

Helpers for working with the filesystem.

```js import { ensureFile, copy, ensureDir, move } from "@std/fs"; await ensureFile("example.txt"); await copy("example.txt", "example_copy.txt"); await ensureDir("subdir"); await move("example_copy.txt", "subdir/example_copy.txt"); ``` ### Add to your project ```sh deno add jsr:@std/fs ``` See all symbols in @std/fs on