Write a file to the sanbox
import std.file; import std.path; with(immutable Sandbox()) { assert(!buildPath(testPath, "foo.txt").exists); writeFile("foo.txt"); assert(buildPath(testPath, "foo.txt").exists); }
See Implementation
Write a file to the sanbox