ChDir Instruction
Syntax:
ChDir Name$
Group:
File
Description:
Change the current directory to Name$.
Parameter
Description
Name$ This
string value is the path and name of the directory.
See
Also: ChDrive, CurDir$(
).
Example:
Sub Main
ChDir "C:\"
Debug.Print CurDir$()
'"C:\"
End Sub