VDS Renaissance のインターフェースは複数の言語に対応しています。公式ドキュメントは、単一で一貫した常に最新のリファレンスを保証するため、英語で管理されています。

@DRIVE

Windows Linux macOS

[VDS7]

Syntax

@DRIVE(ERROR)

Description

Returns the error message from the last DRIVE command or @NEW(drive,...) call, or an empty string if it succeeded. Use it to report why a mount or unmount failed (see Network drives).

OK

Unchanged.

Example

%D = @new(drive,\\server\backups,backup_user,secret)
if @ok()
  info Mounted as %D
  drive unmount,%D
else
  warn Could not mount: @drive(error)
end

See also