<Completa FileSystemObject Object Reference
O método GetDriveName retorna um string que contém o nome da unidade do caminho especificado.
Sintaxe
FileSystemObject.GetDriveName(path)
Parâmetro | Descrição |
---|---|
path | Requeridos. O caminho que irá retornar um nome de unidade |
Exemplo
<%
dim fs,dname
set fs=Server.CreateObject("Scripting.FileSystemObject")
dname=fs.GetDriveName("c:\test\test.htm")
Response.Write(dname)
set fs=nothing
%>
Output:
c:
<Completa FileSystemObject Object Reference