14 lines
362 B
Plaintext
14 lines
362 B
Plaintext
:sig
|
|
String expand_path(String path, String relative_to_path = "")
|
|
|
|
:params
|
|
path : a relative path
|
|
relative_to_path : optional, expand relative to this path (if not given, the current path is used)
|
|
return value : expanded version of the 'path'
|
|
|
|
:desc
|
|
Converts a relative path name into an absolute path, using the current working directory as a base.
|
|
|
|
:see
|
|
>sys
|