This library is a wrapper of async functions of Node.js fs module using @ts-task instead of Promises.
Install it
npm i @ts-task/fs
Use it
import * as fs from '@ts-task/fs';
fs.readFile('./README.md')
.fork(
err => {
err; // $ExpectType ErrnoException
if (err.code === 'ENOENT') {
console.error('Buu, the file does not exists');
}
},
buffer => {
buffer; // ExpectType Buffer
console.log(buffer.toString());
}
)
You can see the API reference here.
You can see more example usages in the types test file.
A path to a file or directory. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
Asynchronously append data to a file, creating the file if it does not exist.
A path to a file. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
If a file descriptor is provided, the underlying file will not be closed automatically.
The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
If encoding
is not supplied, the default of 'utf8'
is used.
If mode
is not supplied, the default of 0o666
is used.
If mode
is a string, it is parsed as an octal integer.
If flag
is not supplied, the default of 'a'
is used.
Asynchronous chmod(2) - Change permissions of a file.
A path to a file. If a URL is provided, it must use the file:
protocol.
A file mode. If a string is passed, it is parsed as an octal integer.
Asynchronous chown(2) - Change ownership of a file.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronous close(2) - close a file descriptor.
A file descriptor.
Asynchronously copies src to dest. By default, dest is overwritten if it already exists. No arguments other than a possible exception are given to the callback function. Node.js makes no guarantees about the atomicity of the copy operation. If an error occurs after the destination file has been opened for writing, Node.js will attempt to remove the destination.
A path to the source file.
A path to the destination file.
An integer that specifies the behavior of the copy operation. The only supported flag is fs.constants.COPYFILE_EXCL, which causes the copy operation to fail if dest already exists.
Asynchronous fchmod(2) - Change permissions of a file.
A file descriptor.
A file mode. If a string is passed, it is parsed as an octal integer.
Asynchronous fchown(2) - Change ownership of a file.
A file descriptor.
Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device.
A file descriptor.
Asynchronous fstat(2) - Get file status.
A file descriptor.
Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.
A file descriptor.
Asynchronous ftruncate(2) - Truncate a file to a specified length.
A file descriptor.
If not specified, defaults to 0
.
Asynchronously change file timestamps of the file referenced by the supplied file descriptor.
A file descriptor.
The last access time. If a string is provided, it will be coerced to number.
The last modified time. If a string is provided, it will be coerced to number.
Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
A path to a file. If a URL is provided, it must use the file:
protocol.
A file mode. If a string is passed, it is parsed as an octal integer.
Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file.
A path to a file. If a URL is provided, it must use the file:
protocol.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronous lstat(2) - Get file status. Does not dereference symbolic links.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronous mkdir(2) - create a directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
Either the file mode, or an object optionally specifying the file mode and whether parent folders
should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to 0o777
.
Asynchronously creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronously creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronously creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous open(2) - open and possibly create a file.
A path to a file. If a URL is provided, it must use the file:
protocol.
A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to 0o666
.
Asynchronously reads the entire contents of a file.
A path to a file. If a URL is provided, it must use the file:
protocol.
If a file descriptor is provided, the underlying file will not be closed automatically.
Asynchronously reads the entire contents of a file.
A path to a file. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
If a file descriptor is provided, the underlying file will not be closed automatically.
Either the encoding for the result, or an object that contains the encoding and an optional flag.
If a flag is not provided, it defaults to 'r'
.
Asynchronously reads the entire contents of a file.
A path to a file. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
If a file descriptor is provided, the underlying file will not be closed automatically.
Either the encoding for the result, or an object that contains the encoding and an optional flag.
If a flag is not provided, it defaults to 'r'
.
Asynchronous readdir(3) - read a directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous readdir(3) - read a directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous readdir(3) - read a directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous readdir(3) - read a directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
If called with withFileTypes: true
the result data will be an array of Dirent.
Asynchronous readlink(2) - read value of a symbolic link.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous readlink(2) - read value of a symbolic link.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous readlink(2) - read value of a symbolic link.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous realpath(3) - return the canonicalized absolute pathname.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous realpath(3) - return the canonicalized absolute pathname.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous realpath(3) - return the canonicalized absolute pathname.
A path to a file. If a URL is provided, it must use the file:
protocol.
The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, 'utf8'
is used.
Asynchronous rename(2) - Change the name or location of a file or directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
A path to a file. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
Asynchronous rmdir(2) - delete a directory.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronous stat(2) - Get file status.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronous symlink(2) - Create a new symbolic link to an existing file.
A path to an existing file. If a URL is provided, it must use the file:
protocol.
A path to the new symlink. If a URL is provided, it must use the file:
protocol.
May be set to 'dir'
, 'file'
, or 'junction'
(default is 'file'
) and is only available on Windows (ignored on other platforms).
When using 'junction'
, the target
argument will automatically be normalized to an absolute path.
Asynchronous truncate(2) - Truncate a file to a specified length.
A path to a file. If a URL is provided, it must use the file:
protocol.
If not specified, defaults to 0
.
Asynchronous unlink(2) - delete a name and possibly the file it refers to.
A path to a file. If a URL is provided, it must use the file:
protocol.
Asynchronously change file timestamps of the file referenced by the supplied path.
A path to a file. If a URL is provided, it must use the file:
protocol.
The last access time. If a string is provided, it will be coerced to number.
The last modified time. If a string is provided, it will be coerced to number.
Asynchronously writes data to a file, replacing the file if it already exists.
A path to a file. If a URL is provided, it must use the file:
protocol.
URL support is experimental.
If a file descriptor is provided, the underlying file will not be closed automatically.
The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
If encoding
is not supplied, the default of 'utf8'
is used.
If mode
is not supplied, the default of 0o666
is used.
If mode
is a string, it is parsed as an octal integer.
If flag
is not supplied, the default of 'w'
is used.
Asynchronously reads data from the file referenced by the supplied file descriptor.
A file descriptor.
The buffer that the data will be written to.
The offset in the buffer at which to start writing.
The number of bytes to read.
The offset from the beginning of the file from which data should be read. If null
, data will be read from the current position.
Asynchronously writes buffer
to the file referenced by the supplied file descriptor.
A file descriptor.
The part of the buffer to be written. If not supplied, defaults to 0
.
The number of bytes to write. If not supplied, defaults to buffer.length - offset
.
The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
Asynchronously writes string
to the file referenced by the supplied file descriptor.
A file descriptor.
The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
The expected string encoding.
Generated using TypeDoc
Asynchronously tests a user's permissions for the file specified by path.
https://nodejs.org/api/fs.html#fs_fs_access_path_mode_callback