Open In App

ASP GetParentFolderName Method

The GetParentFolderName Method in ASP is used for returning a string value that indicates the name of a parent Folder of the last component in the specified path. It is a predefined method of the FileSystem Object. 

Syntax:



FileSystemObject.GetParentFolderName(path) 

Parameter Values:

Path: It is a required attribute. It specifies the complete path file or a folder whose parent folder name is to be returned. 

Example Code: Below example demonstrate the ASP GetParentFolderName Method. 






<%
dim fs,p
set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetParentFolderName("d:\sudo\GFG\Geeks.asp")
Response.Write(p)
set fs=nothing
%>

Output:

d:\sudo\GFG
Article Tags :