GetDriveName

阅读:25      收藏:0      [点我收藏+]

ASP GetDriveName 方法


GetDriveName 方法返回一个字符串,该值是指定路径的驱动器名称。

语法

FileSystemObject.GetDriveName(path)

参数 描述
path 必需的。需返回驱动器名称的路径。

实例

<%
dim fs,dname
set fs=Server.CreateObject("Scripting.FileSystemObject")
dname=fs.GetDriveName("c:\test\test.htm")
Response.Write(dname)
set fs=nothing
%>

输出:

c:
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!