Function accessAbsolute [src]

Test accessing path. Be careful of Time-Of-Check-Time-Of-Use race conditions when using this function. For example, instead of testing if a file exists and then opening it, just open it and handle the error for file not found. See accessAbsoluteZ 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 accessAbsolute(absolute_path: []const u8, flags: File.OpenFlags) Dir.AccessError!void

Parameters

absolute_path: []const u8flags: File.OpenFlags

Source

pub fn accessAbsolute(absolute_path: []const u8, flags: File.OpenFlags) Dir.AccessError!void { assert(path.isAbsolute(absolute_path)); try cwd().access(absolute_path, flags); }