亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频



Drives 屬性

返回由本地機器上所有 Drive 對象組成的 Drives 集合。

object.Drives

object 應(yīng)為 FileSystemObject 對象的名稱。

說明

無論是否插入媒體,可移動媒體驅(qū)動器都顯示在 Drives 集合中。

您可以使用 For Each...Next 結(jié)構(gòu)枚舉 Drives 集合的成員,如下例所示:

Function ShowDriveList
   Dim fso, d, dc, s, n
   Set fso =CreateObject("Scripting.FileSystemObject")
   Set dc =fso.Drives
   For Each d in dc      n =""      s =s & d.DriveLetter & " - "       If d.DriveType =3 Then         n =d.ShareName      ElseIf d.IsReady Then         n =d.VolumeName      End If      s =s & n & "<BR>"   Next   ShowDriveList =sEnd Function

請參閱

Drives 集合 | Files 屬性 | SubFolders 屬性

應(yīng)用于:FileSystemObject 對象

返回首頁