FileException if there is an error (including if the given file is not a directory).
import std.path : buildPath; auto dir = deleteme.buildPath("a", "b", "c"); dir.mkdirRecurse; assert(dir.exists); deleteme.rmdirRecurse; assert(!dir.exists); assert(!deleteme.exists);
Remove directory and all of its content and subdirectories, recursively.