Returns a temporary file create by std.stdio.File.tmpfile method.
Note that the created file has no name.
import dshould; auto f = Path.tempFile; f.write("Hello World\n"); f.flush(); f.rewind(); f.readln().should.equal("Hello World\n");
See Implementation
Returns a temporary file create by std.stdio.File.tmpfile method.
Note that the created file has no name.