此代码片段将文件复制到磁盘上的另一个位置。
它使用快速的 Bun.write()
API 将数据高效地写入磁盘。第一个参数是目标,例如绝对路径或 BunFile
实例。第二个参数是要写入的数据。
const file = Bun.file("/path/to/original.txt");
await Bun.write("/path/to/copy.txt", file);
请参阅 文档 > API > 文件 I/O 以获取 Bun.write()
的完整文档。
此代码片段将文件复制到磁盘上的另一个位置。
它使用快速的 Bun.write()
API 将数据高效地写入磁盘。第一个参数是目标,例如绝对路径或 BunFile
实例。第二个参数是要写入的数据。
const file = Bun.file("/path/to/original.txt");
await Bun.write("/path/to/copy.txt", file);
请参阅 文档 > API > 文件 I/O 以获取 Bun.write()
的完整文档。