ChDir Statement
рд╡рд░реНрддрдорд╛рди рдбрд┐рд░реЗрдХреНрдЯреНрд░реА рдпрд╛ рдбреНрд░рд╛рдЗрд╡ рдмрджрд▓рддрд╛ рд╣реИ.
This statement currently does not work as documented. See this issue for more information.
Syntax:
ChDir Text As String
рдкреИрд░рд╛рдореАрдЯрд░
Text: Any string expression that specifies the directory path or drive.
If you only want to change the current drive, enter the drive letter followed by a colon.
рдЙрджрд╛рд╣рд░рдг:
Sub ExampleChDir
Dim sDir1 As String , sDir2 As String
sDir1 = "c:\Test"
sDir2 = "d:\Private"
ChDir( sDir1 )
MsgBox CurDir
ChDir( sDir2 )
MsgBox CurDir
End Sub