blob: 15aefaff996cd049d5fd72af57a83eaacd6d1365 (
plain)
1
2
3
4
5
6
7
8
|
const path = await Deno.makeTempFile({ dir: "./subdir/" });
if (path.startsWith(Deno.cwd())) {
console.log("good", path);
} else {
throw Error("bad " + path);
}
console.log(path);
await Deno.remove(path);
|