deno/std/fs
2020-05-19 00:46:02 +02:00
..
testdata Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
_util.ts refactor(fs): use every instead of reduce (#5323) 2020-05-15 20:53:23 +02:00
_util_test.ts BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
copy.ts Implement Deno.symlink() for windows (#5533) 2020-05-19 00:46:02 +02:00
copy_test.ts Implement Deno.symlink() for windows (#5533) 2020-05-19 00:46:02 +02:00
empty_dir.ts Miscellaneous documentation and spelling improvements (#5527) 2020-05-17 19:24:39 +02:00
empty_dir_test.ts Fixed Typo (#5495) 2020-05-16 09:31:21 -04:00
ensure_dir.ts docs(std): Fix spelling mistake on permission (#5476) 2020-05-16 11:36:11 +02:00
ensure_dir_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
ensure_file.ts Fix spelling: "--alow-write" => "--allow-write" (#5486) 2020-05-16 20:36:13 +02:00
ensure_file_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
ensure_link.ts BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
ensure_link_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
ensure_symlink.ts Implement Deno.symlink() for windows (#5533) 2020-05-19 00:46:02 +02:00
ensure_symlink_test.ts Implement Deno.symlink() for windows (#5533) 2020-05-19 00:46:02 +02:00
eol.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
eol_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
exists.ts Add require-await lint rule (#4401) 2020-03-20 09:38:34 -04:00
exists_test.ts Unstable methods should not appear in runtime or d.ts (#4957) 2020-04-30 11:23:40 -04:00
expand_glob.ts BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
expand_glob_test.ts BREAKING: remove CLI 'deno script.ts' hack (#5026) 2020-05-04 13:03:30 +02:00
mod.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
move.ts Improve moveSync jsdoc 2020-05-17 11:36:01 -04:00
move_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
read_file_str.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
read_file_str_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
read_json.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
read_json_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
README.md Miscellaneous documentation and spelling improvements (#5527) 2020-05-17 19:24:39 +02:00
walk.ts fix std/fs/walk example (#5030) 2020-05-01 12:37:32 -04:00
walk_test.ts BREAKING: Include limited metadata in 'DirEntry' objects (#4941) 2020-04-29 16:00:31 -04:00
write_file_str.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
write_file_str_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
write_json.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
write_json_test.ts BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00

fs

fs module is made to provide helpers to manipulate the filesystem.

Usage

All the following modules are exposed in mod.ts This feature is currently unstable. To enable it use deno run --unstable

emptyDir

Ensures that a directory is empty. Deletes directory contents if the directory is not empty. If the directory does not exist, it is created. The directory itself is not deleted.

import { emptyDir, emptyDirSync } from "https://deno.land/std/fs/mod.ts";

emptyDir("./foo"); // returns a promise
emptyDirSync("./foo"); // void

ensureDir

Ensures that the directory exists. If the directory structure does not exist, it is created. Like mkdir -p.

import { ensureDir, ensureDirSync } from "https://deno.land/std/fs/mod.ts";

ensureDir("./bar"); // returns a promise
ensureDirSync("./ensureDirSync"); // void

ensureFile

Ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is NOT MODIFIED.

import { ensureFile, ensureFileSync } from "https://deno.land/std/fs/mod.ts";

ensureFile("./folder/targetFile.dat"); // returns promise
ensureFileSync("./folder/targetFile.dat"); // void

Ensures that the link exists. If the directory structure does not exist, it is created.

import {
  ensureSymlink,
  ensureSymlinkSync,
} from "https://deno.land/std/fs/mod.ts";

ensureSymlink("./folder/targetFile.dat", "./folder/targetFile.link.dat"); // returns promise
ensureSymlinkSync("./folder/targetFile.dat", "./folder/targetFile.link.dat"); // void

EOL

Detects and format the passed string for the targeted End Of Line character.

import { format, detect, EOL } from "https://deno.land/std/fs/mod.ts";

const CRLFinput = "deno\r\nis not\r\nnode";
const Mixedinput = "deno\nis not\r\nnode";
const LFinput = "deno\nis not\nnode";
const NoNLinput = "deno is not node";

detect(LFinput); // output EOL.LF
detect(CRLFinput); // output EOL.CRLF
detect(Mixedinput); // output EOL.CRLF
detect(NoNLinput); // output null

format(CRLFinput, EOL.LF); // output "deno\nis not\nnode"
...

exists

Test whether or not the given path exists by checking with the file system

import { exists, existsSync } from "https://deno.land/std/fs/mod.ts";

exists("./foo"); // returns a Promise<boolean>
existsSync("./foo"); // returns boolean

move

Moves a file or directory. Overwrites it if option provided

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

move("./foo", "./bar"); // returns a promise
moveSync("./foo", "./bar"); // void
moveSync("./foo", "./existingFolder", { overwrite: true });
// Will overwrite existingFolder

copy

copy a file or directory. Overwrites it if option provided

import { copy, copySync } from "https://deno.land/std/fs/mod.ts";

copy("./foo", "./bar"); // returns a promise
copySync("./foo", "./bar"); // void
copySync("./foo", "./existingFolder", { overwrite: true });
// Will overwrite existingFolder

readJson

Reads a JSON file and then parses it into an object

import { readJson, readJsonSync } from "https://deno.land/std/fs/mod.ts";

const f = await readJson("./foo.json");
const foo = readJsonSync("./foo.json");

writeJson

Writes an object to a JSON file.

WriteJsonOptions

  • replacer : An array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.
  • space : Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
import { writeJson, writeJsonSync } from "https://deno.land/std/fs/mod.ts";

writeJson("./target.dat", { foo: "bar" }, { spaces: 2 }); // returns a promise
writeJsonSync("./target.dat", { foo: "bar" }, { replacer: ["foo"] }); // void

walk

Iterate all files in a directory recursively.

import { walk, walkSync } from "https://deno.land/std/fs/mod.ts";

for (const fileInfo of walkSync(".")) {
  console.log(fileInfo.filename);
}

// Async
async function printFilesNames() {
  for await (const entry of walk()) {
    console.log(entry.path);
  }
}

printFilesNames().then(() => console.log("Done!"));

readFileStr

Read file and output it as a string.

ReadOptions

  • encoding : The encoding to read file. lowercased.
import { readFileStr, readFileStrSync } from "https://deno.land/std/fs/mod.ts";

readFileStr("./target.dat", { encoding: "utf8" }); // returns a promise
readFileStrSync("./target.dat", { encoding: "utf8" }); // string

writeFileStr

Write the string to file.

import {
  writeFileStr,
  writeFileStrSync,
} from "https://deno.land/std/fs/mod.ts";

writeFileStr("./target.dat", "file content"); // returns a promise
writeFileStrSync("./target.dat", "file content"); // void