1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .. _func_file_realpath:
- ========
- RealPath
- ========
- RealPath -
- Description
- ===========
- .. code-block:: blitzmax
- RealPath$( path$ )
- Get real, absolute path of a file path
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- .. code-block:: blitzmax
- ' realpath.bmx
-
- print realpath("realpath.bmx") 'prints full path of this source
-
- print realpath("..") 'prints full path of parent directory
- See Also
- ========
|