📜  ASP GetDriveName 方法

📅  最后修改于: 2022-05-13 01:56:38.544000             🧑  作者: Mango

ASP GetDriveName 方法

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

句法

FileSystemObject.GetDriveName(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
%>


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
%>


输出:

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