deno/cli/tests/056_make_temp_file_write_perm.ts

10 lines
213 B
TypeScript

const path = await Deno.makeTempFile({ dir: `subdir` });
try {
if (!path.match(/^subdir[/\\][^/\\]+/)) {
throw Error("bad " + path);
}
console.log("good", path);
} finally {
await Deno.remove(path);
}