Changes the current directory or folder.
Public Sub ChDir(ByVal Path As String)
Exception type | Error number | Condition |
---|---|---|
52 | Path is empty. | |
76 | Invalid drive is specified, or drive is unavailable. |
The ChDir function 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 using "..", as follows:
ChDir ".." ' Moves up one directory.
This example uses the ChDir function 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")
ChDrive Function | CurDir Function | Dir Function | MkDir Function | RmDir Function |