Skip to content

Um eine Datei zu löschen, verwenden Sie Bun.file(path).delete().

ts
// Delete a file
const file = Bun.file("path/to/file.txt");
await file.delete();

// Now the file doesn't exist
const exists = await file.exists();
// => false

Siehe Docs > API > FileSystem für weitere Dateisystemoperationen.

Bun von www.bunjs.com.cn bearbeitet