func_file_realpath.rst 473 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .. _func_file_realpath:
  2. ========
  3. RealPath
  4. ========
  5. RealPath -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. RealPath$( path$ )
  10. Get real, absolute path of a file path
  11. Parameters
  12. ==========
  13. Return Values
  14. =============
  15. Nothing.
  16. Examples
  17. ========
  18. .. code-block:: blitzmax
  19. ' realpath.bmx
  20. print realpath("realpath.bmx") 'prints full path of this source
  21. print realpath("..") 'prints full path of parent directory
  22. See Also
  23. ========