blob: c0deda8a25c3056768b3bf9381f5b851e0a2f0a4 (
plain)
1
2
3
4
5
6
7
8
9
|
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);
}
|