fsPromises.readFile(path[, options])
历史
版本 | 变化 |
---|---|
v15.2.0、v14.17.0 | options 参数可能包含 AbortSignal 以中止正在进行的 readFile 请求。 |
v10.0.0 | 添加于:v10.0.0 |
参数
path
<string> | <Buffer> | <URL> | <FileHandle> 文件名或FileHandle
options
<Object>|<string>encoding
<string> | <null> 默认:null
flag
<string>参看支持文件系统flags
.默认:'r'
.signal
<AbortSignal> 允许中止 in-progress 读取文件
- 返回: <Promise> 满足文件的内容。
异步读取文件的全部内容。
如果未指定编码(使用 options.encoding
),则数据作为 <Buffer> 对象返回。否则,数据将是一个字符串。
如果options
是字符串,则它指定编码。
当path
是目录时,fsPromises.readFile()
的行为是特定于平台的。在 macOS、Linux 和 Windows 上,promise 将被拒绝并出现错误。在 FreeBSD 上,将返回目录内容的表示。
可以使用 <AbortSignal> 中止正在进行的 readFile
。如果请求被中止,则返回的承诺将被拒绝,并带有 AbortError
:
import { readFile } from 'node:fs/promises';
try {
const controller = new AbortController();
const { signal } = controller;
const promise = readFile(fileName, { signal });
// Abort the request before the promise settles.
controller.abort();
await promise;
} catch (err) {
// When a request is aborted - err is an AbortError
console.error(err);
}
中止正在进行的请求不会中止单个操作系统请求,而是执行内部缓冲fs.readFile
。
任何指定的 <FileHandle> 都必须支持读取。
相关用法
- Node.js fsPromises.readFile()用法及代码示例
- Node.js fsPromises.readdir(path[, options])用法及代码示例
- Node.js fsPromises.realpath()用法及代码示例
- Node.js fsPromises.rename()用法及代码示例
- Node.js fsPromises.mkdtemp(prefix[, options])用法及代码示例
- Node.js fsPromises.chmod()用法及代码示例
- Node.js fsPromises.lchmod()用法及代码示例
- Node.js fsPromises.appendFile()用法及代码示例
- Node.js fsPromises.opendir(path[, options])用法及代码示例
- Node.js fsPromises.utimes()用法及代码示例
- Node.js fsPromises.copyFile()用法及代码示例
- Node.js fsPromises.symlink()用法及代码示例
- Node.js fsPromises.lchown()用法及代码示例
- Node.js fsPromises.writeFile(file, data[, options])用法及代码示例
- Node.js fsPromises.open()用法及代码示例
- Node.js fsPromises.mkdtemp()用法及代码示例
- Node.js fsPromises.writeFile()用法及代码示例
- Node.js fsPromises.access()用法及代码示例
- Node.js fsPromises.mkdir()用法及代码示例
- Node.js fsPromises.opendir()用法及代码示例
- Node.js fsPromises.truncate()用法及代码示例
- Node.js fsPromises.chown()用法及代码示例
- Node.js fsPromises.stat()用法及代码示例
- Node.js fsPromises.copyFile(src, dest[, mode])用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 fsPromises.readFile(path[, options])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。