Programming Reference Manual
 
Syntax
 
ChDir Path$
 
Description
Change the current directory to Path$.
 
Parameter
Description
Path$
This string value is the path and name of the directory.
See Also
Example
 
Sub Main
    ChDir "C:\"
    Debug.Print CurDir$() '"C:\"
End Sub