Supprimer le fichier avec Deno

// async
await Deno.remove("./file.txt");
// sync
Deno.removeSync("./file.txt");
ali ahmed