Bun.file()
函数接受一个路径并返回一个 BunFile
实例。使用 .exists()
方法检查文件是否存在于给定路径中。
const path = "/path/to/package.json";
const file = Bun.file(path);
await file.exists(); // boolean;
有关使用 BunFile
的更多信息,请参阅 API > 文件 I/O。
Bun.file()
函数接受一个路径并返回一个 BunFile
实例。使用 .exists()
方法检查文件是否存在于给定路径中。
const path = "/path/to/package.json";
const file = Bun.file(path);
await file.exists(); // boolean;
有关使用 BunFile
的更多信息,请参阅 API > 文件 I/O。