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