This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
ChDir Statement Example
This example uses the
ChDir statement to change the current directory or folder.
' Change current directory or folder to "MYDIR".
ChDir
"MYDIR"
' Assume "C:" is the current drive. The following statement changes
' the default directory on drive "D:". "C:" remains the current drive.
ChDir
"D:\WINDOWS\SYSTEM"