fsPromises.readFile(path[, options])


异步地读取文件的全部内容。

如果未指定编码(使用 options.encoding),则数据作为 Buffer 对象返回。 否则,数据将为字符串。

如果 options 是字符串,则它指定编码。

path 是目录时,fsPromises.readFile() 的行为是特定于平台的。 在 macOS、Linux 和 Windows 上,promise 将使用错误拒绝。 在 FreeBSD 上,将返回目录内容的表示。

任何指定的 FileHandle 必须支持读取。

Asynchronously reads the entire contents of a file.

The Promise is resolved with the contents of the file. If no encoding is specified (using options.encoding), the data is returned as a Buffer object. Otherwise, the data will be a string.

If options is a string, then it specifies the encoding.

When the path is a directory, the behavior of fsPromises.readFile() is platform-specific. On macOS, Linux, and Windows, the promise will be rejected with an error. On FreeBSD, a representation of the directory's contents will be returned.

Any specified FileHandle has to support reading.