ASP GetDriveName() - FileSystemObject This the tutorial/example asp script how to Get driver name.
ShotDev Focus:
- ASP & Get driver name.
Example
asp_filesystemobject_getdrivename.asp
<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Dim objFSO,strDrive
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
strDrive = objFSO.GetDriveName(Server.MapPath("MyFiles/shotdev.txt"))
Response.write("Drive = " & strDrive)
Set objFSO = Nothing
%>
</body>
</html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_filesystemobject_getdrivename.asp
Screenshot


