Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using a local clone.

dmd.root.file

Compiler implementation of the D programming language http://dlang.org
Authors:

Source root/file.d

struct FileBuffer;
Owns a (rmem-managed) file buffer.
pure nothrow @nogc @safe ubyte[] extractSlice();
Transfers ownership of the buffer to the caller.
struct File;
struct ReadResult;
pure nothrow @nogc @safe ubyte[] extractSlice();
Transfers ownership of the buffer to the caller.
pure nothrow @nogc ubyte[] extractDataZ();
ditto Include the null-terminator at the end of the buffer in the returned array.
static nothrow ReadResult read(const(char)* name);
Read the full content of a file.
static nothrow bool write(const(char)* name, const void[] data);

static nothrow bool write(const(char)[] name, const void[] data);

static nothrow bool write(const(char)* name, const(void)* data, size_t size);
Write a file, returning true on success.
static nothrow void remove(const(char)* name);
Delete a file.