Function openFileAbsolute [src]
Opens a file for reading or writing, without attempting to create a new file, based on an absolute path.
Call File.close to release the resource.
Asserts that the path is absolute. See Dir.openFile for a function that
operates on both absolute and relative paths.
Asserts that the path parameter has no null bytes. See openFileAbsoluteZ for a function
that accepts a null-terminated path.
On Windows, absolute_path should be encoded as WTF-8.
On WASI, absolute_path should be encoded as valid UTF-8.
On other platforms, absolute_path is an opaque sequence of bytes with no particular encoding.
Prototype
pub fn openFileAbsolute(absolute_path: []const u8, flags: File.OpenFlags) File.OpenError!File
Parameters
absolute_path: []const u8
flags: File.OpenFlags
Source
pub fn openFileAbsolute(absolute_path: []const u8, flags: File.OpenFlags) File.OpenError!File {
assert(path.isAbsolute(absolute_path));
return cwd().openFile(absolute_path, flags);
}