ChDir Statement

वर्तमान डिरेक्ट्री या ड्राइव बदलता है.

Warning Icon

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.

Note Icon

If you only want to change the current drive, enter the drive letter followed by a colon.


Error codes:

5 Invalid procedure call

D'oh! You found a bug (text/sbasic/shared/00000003.xhp#err76 not found).

उदाहरण:


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

Please support us!