Function Reference

DriveMapGet

マップされたドライブの内容を取得します。

DriveMapGet ( "device" )

 

パラメータ

device 調べるデバイス(ドライブ、プリンター)文字。例:"O:"、"LPT1:"。

 

返し値

成功 マップの内容を返します。例:\\server\share
失敗 空文字列 ""を返し、@errorを1に設定します。

 

注意

なし。

 

関連

DriveMapAdd, DriveMapDel

 



; ドライブXを\\myserver\stuffに現在のユーザーでマップ
DriveMapAdd("X:", "\\myserver\stuff")

; マップの内容を取得
MsgBox(0, "Drive X: is mapped to", DriveMapGet("X:"))