ChDir Statement
Description
Changes the current directory or folder.
Syntax
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"
See Also
ChDrive statement, CurDir function, Dir function, MkDir statement, RmDir statement.
Specifics (Macintosh)
On the Power Macintosh, the default drive always changes to the drive specified in path. Full path specifications begin with the volume name, and relative paths begin with a colon (:). ChDir resolves any aliases specified in the path:
ChDir "MacDrive:Tmp" ' On the Macintosh.
Note that when making relative directory changes, different symbols are used in Microsoft Windows and on the Macintosh:
ChDir ".." ' Moves up one directory in Microsoft Windows.
ChDir "::" ' Moves up one directory on the Macintosh.
Example
This example uses the ChDir statement to change the current directory or folder.
' Change current directory or folder to "MYDIR".
ChDir "MYDIR"
' In Microsoft Windows:
' 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"
' On the Macintosh:
' Changes default folder and default drive.
ChDir "HD:MY FOLDER"