Returns the path to a new (unique) temporary file under tempDir.
import nxt.algorithm.searching : canFind, endsWith; const prefix = "_xyz_"; const ext = "_ext_"; const path = tempSubFilePath(prefix, ext); assert(path.canFind(prefix)); assert(path.endsWith(ext));
https://forum.dlang.org/post/ytmwfzmeqjumzfzxithe@forum.dlang.org https://dlang.org/library/std/stdio/file.tmpfile.html
See Implementation
Returns the path to a new (unique) temporary file under tempDir.