Instrución ChDrive

Modifica a unidade de disco actual.

warning

Some DOS-specific file and directory functions are no longer provided in LibreOffice, 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 LibreOffice. Therefore this feature is subject to removal in a future release.


note

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


Sintaxe:


  ChDrive Text As String

Parámetros:

Text: Any string expression that contains the drive letter of the new drive. If you want, you can use URL notation.

A unidade debe ter unha letra maiúscula. En Windows, a letra atribuída á unidade está restrinxida pola configuración de LASTDRV. Se o argumento da unidade é unha cadea de varios caracteres, só é relevante a primeira letra. Se tenta acceder a unha unidade inexistente, prodúcese un erro ao cal pode responder coa instrución OnError.

Códigos de erro

5 Chamada de procedemento incorrecta

68 Dispositivo non dispoñíbel

76 Ruta non atopada

Exemplo:


  Sub ExampleChDrive
      ChDrive "D" REM Só é posíbel se existe unha unidade 'D'
  End Sub

Precisamos da súa axuda!