Bun

指南读取文件

使用 Bun 将文件读取到 Uint8Array

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

要将文件读取到 Uint8Array 实例中,请使用 .arrayBuffer()BunFile 的内容作为 ArrayBuffer 检索,然后将其传递给 Uint8Array 构造函数。

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

const arrBuffer = await file.arrayBuffer();
const byteArray = new Uint8Array(arrBuffer);

byteArray[0]; // first byteArray
byteArray.length; // length of byteArray

有关在 Bun 中使用 Uint8Array 和其他二进制数据格式的更多信息,请参阅 API > 二进制数据 > 类型化数组