filesystem path to json file
object parsed from json file
Read a json file directly into a specified D type.
import std.path : buildPath; import std.uuid : randomUUID; import std.file : tempDir, write, mkdirRecurse; auto dir = buildPath(tempDir(), "jsonizer_readjson_test"); mkdirRecurse(dir); auto file = buildPath(dir, randomUUID().toString); file.write("[1, 2, 3]"); assert(file.readJSON!(int[]) == [ 1, 2, 3 ]);
Read a json-constructable object from a file.