Bun.file()
函数接受一个路径并返回一个 BunFile
实例。使用 .delete()
方法删除文件。
const path = "/path/to/file.txt";
const file = Bun.file(path);
await file.delete();
请参阅 文档 > API > 文件 I/O 以获取 Bun.file()
的完整文档。
Bun.file()
函数接受一个路径并返回一个 BunFile
实例。使用 .delete()
方法删除文件。
const path = "/path/to/file.txt";
const file = Bun.file(path);
await file.delete();
请参阅 文档 > API > 文件 I/O 以获取 Bun.file()
的完整文档。
HTTP
包管理器
将 bun install 与 Artifactory 一起使用
配置 git 以 diff Bun 的 lockb lockfile
在 GitHub Actions 中使用 Bun 安装依赖项
读取文件
运行时
流
将 ReadableStream 转换为 Uint8Array
将 ReadableStream 转换为 ArrayBuffer
将 Node.js Readable 转换为 Uint8Array
实用工具