Drives 集合

80酷酷网    80kuku.com

  集合

 

所有可用驱动器的只读集合。

说明

可移动媒体的驱动器不需要插入媒体,就可以出现在 Drives 集合中。

下面这个例子说明了如何使用 Drives 属性来获取 Drives 集合以及如何使用 Enumerator 对象来遍历该集合:

function ShowDriveList(){   var fso, s, n, e, x;   fso = new ActiveXObject("Scripting.FileSystemObject");   e = new Enumerator(fso.Drives);   s = "";   for (; !e.atEnd(); e.moveNext())   {      x = e.item();      s = s + x.DriveLetter;      s += " - ";      if (x.DriveType == 3)         n = x.ShareName;      else if (x.IsReady)         n = x.VolumeName;      else         n = "[Drive not ready]";      s +=   n + "
";
   }   return(s);}

属性

|

请参阅

| | | | |



分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: