Function createFileAbsolute [src]
Creates, opens, or overwrites a file with write access, based on an absolute path.
Call File.close to release the resource.
Asserts that the path is absolute. See Dir.createFile for a function that
operates on both absolute and relative paths.
Asserts that the path parameter has no null bytes. See createFileAbsoluteC 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 createFileAbsolute(absolute_path: []const u8, flags: File.CreateFlags) File.OpenError!File
Parameters
absolute_path: []const u8
flags: File.CreateFlags
Source
pub fn createFileAbsolute(absolute_path: []const u8, flags: File.CreateFlags) File.OpenError!File {
assert(path.isAbsolute(absolute_path));
return cwd().createFile(absolute_path, flags);
}