the path of the directory to make
FileException on POSIX or WindowsException on Windows if an error occured.
import std.file : mkdir; auto dir = deleteme ~ "dir"; scope(exit) dir.rmdir; dir.mkdir; assert(dir.exists);
import std.exception : assertThrown; assertThrown("a/b/c/d/e".mkdir);
Make a new directory pathname.