NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ChDir Statement

Changes the current directory or folder.

ChDir (path)

The required path argument is a string expression that identifies which directory or folder becomes the new default directory or folder. The path may include the drive. If no drive is specified, ChDir changes the default directory or folder on the current drive.

Remarks

The ChDir statement changes the default directory, but not the default drive. For example, if the default drive is C, the following statement changes the default directory on drive D, but C remains the default drive:

ChDir "D:\TMP"   

Making relative directory changes is accomplished this way:

ChDir ".."   ' Moves up one directory.

See Also

Example

ChDrive Statement | CurDir Function | Dir Function | MkDir Function | RmDir Function