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