ファイルを消す
ファイルを消すには、
Deno.remove
を使います
https://deno.land/typedoc/index.html#remove
code:ts
await Deno.remove("./hello.txt")
ディレクトリも消すことができます
code:ts
await Deno.remove("./some/dir", { recursive: false })
recursive
オプションを指定した場合、そのディレクトリが空出ない場合も、サブディレクトリを再帰的にすべて削除します