123456789101112131415161718192021222324252627282930313233343536373839 |
- .. _func_file_stripdir:
- ========
- StripDir
- ========
- StripDir -
- Description
- ===========
- .. code-block:: blitzmax
- StripDir$( path$ )
- Strip directory from a file path
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- .. code-block:: blitzmax
- ' stripdir.bmx
-
- print stripdir("mypath/myfile.bmx") 'prints myfile.bmx
- See Also
- ========
|