1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .. _func_file_changedir:
- =========
- ChangeDir
- =========
- ChangeDir -
- Description
- ===========
- .. code-block:: blitzmax
- ChangeDir( path$ )
- Change current directory
- Parameters
- ==========
- Return Values
- =============
- True if successful
- Examples
- ========
- .. code-block:: blitzmax
- ' changedir.bmx
-
- print "CurrentDir()="+currentdir()
-
- ' change current folder to the parent folder
-
- changedir ".."
-
- ' print new CurrentDir()
-
- print "CurrentDir()="+currentdir()
- See Also
- ========
|