Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
string mkTmpDir()
{
import std.uuid, std.file, std.path;
string d = buildPath(tempDir, randomUUID.toString);
if (!d.exists)
{
mkdir(d);
return d;
}
else return null;
}
string s;
while (!s.length)
s = mkTmpDir;
The standard library doesn't provide a function for that.
mkTmpDir generates a folder in the temp dir that takes a UUID as name. The temp dir is created when a non empty path is returned.
mkTmpDir generates a folder in the temp dir that takes a UUID as name. The temp dir is created when a non empty path is returned.
const tempDir = await Deno.makeTempDir();
Only in Deno. Also see Deno.makeTempDirSync() for synchronous version.
td = tempfile.TemporaryDirectory()
tempfile.TemporaryDirectory() was added in Python 3.2 .
It wraps lower-level function mkdtemp() .
It wraps lower-level function mkdtemp() .