WEB开发网
开发学院WEB开发Jsp Drive 对象 阅读

Drive 对象

 2008-01-05 08:12:30 来源:WEB开发网   
核心提示: 提供对特定磁盘驱动器或网络共享属性的访问, 说明下面的代码演示了如何用 Drive 对象访问驱动器属性: function ShowFreeSpace(drvPath){ var fso, d, s; fso = new ActiveXObject("Scripting.FileSystemObject&q

 

提供对特定磁盘驱动器或网络共享属性的访问。

说明

下面的代码演示了如何用 Drive 对象访问驱动器属性:

function ShowFreeSpace(drvPath)
{
  var fso, d, s;
  fso = new ActiveXObject("Scripting.FileSystemObject");
  d = fso.GetDrive(fso.GetDriveName(drvPath));
  s = "Drive " + drvPath + " - " ;
  s += d.VolumeName + "<br>";
  s += "Free Space: " + d.FreeSpace/1024 + " Kbytes";
  return(s);
}

方法

Drive 对象没有方法。

属性

AvailableSpace 属性 DriveLetter 属性 DriveType 属性 FileSystem 属性 FreeSpace 属性 IsReady 属性 Path 属性 RootFolder 属性 SerialNumber 属性 ShareName 属性 TotalSize 属性 VolumeName 属性

请参阅

Drives 集合 File 对象 Files 集合 Folder 对象 Folders 集合 GetDrive 方法


Tags:Drive 对象

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接