-
-
Notifications
You must be signed in to change notification settings - Fork 618
os.realpath
Jason Perkins edited this page May 30, 2015
·
7 revisions
Returns the canonical absolute path of a filename.
ok, err = os.realpath(path)
This functions calls realpath() on Posix systems and _fullpath on Windows.
path
is the path to be converted.
If successful, returns the canonical absolute path. On error, returns nil and an error message.
Premake 5.0 or later.