Bun.file()
函数接受一个路径并返回一个 BunFile
实例。BunFile
类扩展了 Blob
,允许你以多种格式延迟读取文件。使用 .arrayBuffer()
将文件作为 ArrayBuffer
读取。
const path = "/path/to/package.json";
const file = Bun.file(path);
const buffer = await file.arrayBuffer();
然后可以将 ArrayBuffer
中的二进制内容作为类型化数组(例如 Uint8Array
)读取。
const buffer = await file.arrayBuffer();
const bytes = new Uint8Array(buffer);
bytes[0];
bytes.length;
请参阅 类型化数组 文档,了解有关在 Bun 中使用类型化数组的更多信息。