winamp/Src/external_dependencies/openmpt-trunk/include/premake/website/docs/os.realpath.md
2024-09-24 14:54:57 +02:00

531 B
Vendored

Returns the canonical absolute path of a filename.

ok, err = os.realpath(path)

This functions calls realpath() on Posix systems and _fullpath on Windows.

Parameters

path is the path to be converted.

Return Value

If successful, returns the canonical absolute path. On error, returns nil and an error message.

Availability

Premake 5.0 or later.

See Also