Bun

指南读取文件

使用 Bun 将文件读为字符串

Bun.file() 函数接受一个路径并返回一个 BunFile 实例。BunFile 类扩展了 Blob,允许你以各种格式延迟读取文件。使用 .text() 将内容读为字符串。

const path = "/path/to/file.txt";
const file = Bun.file(path);

const text = await file.text();
// string

任何相对路径都将相对于项目根目录(包含 package.json 文件的最近目录)进行解析。

const path = "./file.txt";
const file = Bun.file(path);