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

GetDriveName 方法

 2008-01-05 08:13:56 来源:WEB开发网   
核心提示: 根据指定路径返回包含驱动器名称的字符串,object.GetDriveName(path) 参数object必选项,GetDriveName 方法, 应为 FileSystemObject 的名称,path必选项, 不会试图解析路径,也不会检查指定的路径是否存在, 路径说明,将根据其中成分返回驱动器名称

 

根据指定路径返回包含驱动器名称的字符串。

object.GetDriveName(path)

参数

object

必选项。 应为 FileSystemObject 的名称。

path

必选项。 路径说明,将根据其中成分返回驱动器名称。

说明

假如无法确定驱动器,GetDriveName 方法将返回长度为零的字符串 ("") 。

注重  GetDriveName 只作用于所提供的 path 字符串。 不会试图解析路径,也不会检查指定的路径是否存在。

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

function GetDriveLetter(path)
{
  var fso, s ="";
  fso = new ActiveXObject("Scripting.FileSystemObject");
  s += fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(path)));
  return(s);
}

请参阅

GetAbsolutePathName 方法 GetBaseName 方法 GetDrive 方法 GetExtensionName 方法 GetFile 方法 GetFileName 方法 GetFileVersion 方法 GetFolder 方法 GetParentFolderName 方法 GetSpecialFolder 方法 GetTempName 方法应用于: FileSystemObject 对象


Tags:GetDriveName 方法

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