当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP GetDriveName用法及代码示例


ASP GetDriveName方法用于返回一个字符串值,该值指定指定路径的驱动器名称。它是FileSystem对象的预定义方法。

用法

FileSystemObject.GetDriveName(path) 

参数值

path: 这是必填属性。它指定从中返回驱动器名称的文件的完整路径。

范例1:下面的代码演示了ASP GetDriveName方法。

Javascript

<% 
dim fs,dname 
set fs=Server.CreateObject("Scripting.FileSystemObject") 
dname=fs.GetDriveName("d:\hello\sudo.html") 
Response.Write(dname) 
set fs=nothing 
%>

输出:

d

范例2:

Javascript

<% 
dim fs,dname 
set fs=Server.CreateObject("Scripting.FileSystemObject") 
dname=fs.GetDriveName("C:\inetpub\wwwroot\asptest\GFG.txt") 
Response.Write(dname) 
set fs=nothing 
%>

输出:

c

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP GetDriveName Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。