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
Read a file from disk and store it in memory.
Authors:
Walter Bright, https://www.digitalmars.com
License:
Source root/file.d
Documentation https://dlang.org/phobos/dmd_root_file.html
- struct
Buffer
; - Owns a (rmem-managed) 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 bool
read
(const char[]name
, ref OutBufferbuffer
); - Read the full content of a file, and append it to
buffer
Parameters:char[] name
name of file OutBuffer buffer
file contents appended to it Returns:false = success, true = failed - static nothrow bool
write
(const(char)*name
, const void[]data
);
static nothrow boolwrite
(const(char)[]name
, const void[]data
); - Write a file, returning true on success.
- static nothrow void
remove
(const(char)*name
); - Delete a file.
- static nothrow bool
update
(const(char)*namez
, const void[]data
);
static nothrow boolupdate
(const(char)[]name
, const void[]data
); - Update fileIf the file exists and is identical to what is to be written, merely update the timestamp on the file. Otherwise, write the file. The idea is writes are much slower than reads, and build systems often wind up generating identical files.Parameters:
const(char)[] name
name of file to update void[] data
updated contents of file Returns:true on success - static nothrow ulong
size
(const char*namez
); - Size of a file in bytes.Parameters:
char* namez
null-terminated filename Returns:ulong.max on any error, the length otherwise.
Copyright © 1999-2024 by the D Language Foundation | Page generated by
Ddoc on Sun Nov 17 01:06:25 2024