WEB开发网
开发学院WEB开发Jsp DriveExists 方法 阅读

DriveExists 方法

 2008-01-05 19:00:28 来源:WEB开发网   
核心提示: 假如指定的驱动器存在则返回 True ;假如不存在则返回 False ,object.DriveExists(drivespec) 参数object必选项,DriveExists 方法, 应为 FileSystemObject 的名称,drivespec必选项, 即使没有媒体 DriveExists 方法也返回 tr

 

假如指定的驱动器存在则返回 True ;假如不存在则返回 False

object.DriveExists(drivespec)

参数

object

必选项。 应为 FileSystemObject 的名称。

drivespec

必选项。 驱动器号或完整的路径说明。

说明

对于可移动媒体的驱动器, 即使没有媒体 DriveExists 方法也返回 true 。 可以使用 Drive 对象的 IsReady 属性来决定驱动器是否就绪。

下面的例子说明了 DriveExists 方法的用法。

function ReportDriveStatus(drv)
{
  var fso, s = "";
  fso = new ActiveXObject("Scripting.FileSystemObject");
  if (fso.DriveExists(drv))
   s += "Drive " + drv + " exists.";
  else 
   s += "Drive " + drv + " doesn't exist.";
  return(s);
}

请参阅

Drive Object Drives Collection FileExists 方法 FolderExists 方法 GetDrive 方法 GetDriveName 方法 IsReady 属性应用于: FileSystemObject 对象


Tags:DriveExists 方法

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