1 2 3 4 5 6 7 8 9 10 |
x12 x12 x12 x12 x12 x12 x12 |
// deno-lint-ignore-file no-console import { emptyDir } from "../empty_dir.ts"; try { // Empty testfolder stored in Deno.args where the child.txt is located. await emptyDir(Deno.args[0]!); console.log("success"); } catch (error) { console.log(error); } |