_io_realpath_len

func _io_realpath_len(path: RawPtr) 'io -> Int

Canonicalize a NUL-terminated path (resolving ".", "..", and symlinks, like POSIX realpath): the resolved byte length or a negative errno. Pair with iorealpath_copy.

View Source
pub func _io_realpath_len(path: RawPtr) 'io -> Int {
	'io(request: .realpath_len(path))
}