Open In App

ASP GetDrive Method

Last Updated : 02 Mar, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The GetDrive Method in ASP is used for returning the Drive Object that correspondence to a drive in a specified path. It is a predefined method of the FileSystem Object. 

Syntax:

FileSystemObject.GetDrive(drivespec) 

Parameter Values:

  • drivespec: It is a required attribute. It can be a drive letter (c), a drive letter with a colon appended (c:), a drive letter with a colon and path separator appended (c:), or any network share specification (\computer2\share1).

Example Code: Below code demonstrates the ASP GetDrive Method. 

ASP




<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("d:\")
response.write("Drive is:" + d)
set fs=nothing
%>


Output:

Drive is: d

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads