Function cwd [src]
Returns a handle to the current working directory. It is not opened with iteration capability.
Closing the returned Dir is checked illegal behavior. Iterating over the result is illegal behavior.
On POSIX targets, this function is comptime-callable.
Prototype
pub fn cwd() Dir
Source
pub fn cwd() Dir {
if (native_os == .windows) {
return .{ .fd = windows.peb().ProcessParameters.CurrentDirectory.Handle };
} else if (native_os == .wasi) {
return .{ .fd = std.options.wasiCwd() };
} else {
return .{ .fd = posix.AT.FDCWD };
}
}