2020-03-08 19:14:53 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2020-03-15 11:48:46 -04:00
|
|
|
import { access, accessSync } from "./_fs/_fs_access.ts";
|
2020-03-08 19:14:53 -04:00
|
|
|
import { appendFile, appendFileSync } from "./_fs/_fs_appendFile.ts";
|
2020-03-14 17:46:39 -04:00
|
|
|
import { chmod, chmodSync } from "./_fs/_fs_chmod.ts";
|
2020-03-15 11:48:46 -04:00
|
|
|
import { chown, chownSync } from "./_fs/_fs_chown.ts";
|
|
|
|
import { close, closeSync } from "./_fs/_fs_close.ts";
|
2020-03-14 17:46:39 -04:00
|
|
|
import * as constants from "./_fs/_fs_constants.ts";
|
2020-03-15 11:48:46 -04:00
|
|
|
import { readFile, readFileSync } from "./_fs/_fs_readFile.ts";
|
|
|
|
import { readlink, readlinkSync } from "./_fs/_fs_readlink.ts";
|
2020-04-06 23:43:14 -04:00
|
|
|
import { exists, existsSync } from "./_fs/_fs_exists.ts";
|
2020-04-08 18:43:35 -04:00
|
|
|
import { mkdir, mkdirSync } from "./_fs/_fs_mkdir.ts";
|
2020-04-12 14:34:16 -04:00
|
|
|
import { copyFile, copyFileSync } from "./_fs/_fs_copy.ts";
|
2020-05-04 18:59:37 -04:00
|
|
|
import { writeFile } from "./_fs/_fs_writeFile.ts";
|
|
|
|
import * as promises from "./_fs/promises/mod.ts";
|
2020-03-15 11:48:46 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
access,
|
|
|
|
accessSync,
|
|
|
|
appendFile,
|
|
|
|
appendFileSync,
|
|
|
|
chmod,
|
|
|
|
chmodSync,
|
|
|
|
chown,
|
|
|
|
chownSync,
|
|
|
|
close,
|
|
|
|
closeSync,
|
|
|
|
constants,
|
2020-04-12 14:34:16 -04:00
|
|
|
copyFile,
|
|
|
|
copyFileSync,
|
2020-04-08 18:43:35 -04:00
|
|
|
exists,
|
|
|
|
existsSync,
|
2020-03-15 11:48:46 -04:00
|
|
|
readFile,
|
|
|
|
readFileSync,
|
|
|
|
readlink,
|
2020-03-28 13:03:49 -04:00
|
|
|
readlinkSync,
|
2020-04-08 18:43:35 -04:00
|
|
|
mkdir,
|
|
|
|
mkdirSync,
|
2020-05-04 18:59:37 -04:00
|
|
|
writeFile,
|
|
|
|
promises,
|
2020-03-15 11:48:46 -04:00
|
|
|
};
|