ChDir Statement

현재 디렉토리 또는 드라이브를 변경합니다.

warning

Some DOS-specific file and directory functions are no longer provided in LibreOfficeDev, or their function is only limited. For example, support for the ChDir, ChDrive and CurDir functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for LibreOfficeDev. Therefore this feature is subject to removal in a future release.


note

The ScriptForge library in LibreOfficeDev 7.1 introduces the FileSystem service with methods to handle files and folders in user scripts.


Syntax:


ChDir Text As String

Parameters:

Text: 디렉토리 경로나 드라이브를 지정하는 임의의 문자열 식입니다.

참고 아이콘

현재 드라이브만 변경하려는 경우 드라이브 문자 뒤에 콜론만 입력합니다.


Error codes:

5 잘못된 프로시저 호출입니다.

76 경로를 찾을 수 없습니다.

Example:


  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