Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

writeFile

Writes content to the file system, using the file creation flags provided.

Dir.writeFile
pub fn writeFile(dir: Dir, io: Io, options: WriteFileOptions) WriteFileError!void

File

lib/std/Io/Dir.zig:661

Code

pub fn writeFile(dir: Dir, io: Io, options: WriteFileOptions) WriteFileError!void {
    var file = try dir.createFile(io, options.sub_path, options.flags);
    defer file.close(io);
    try file.writeStreamingAll(io, options.data);
}