Удалить файл с помощью deno

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