Folder.ParentFolder

JScript3.0+Syntax

							folder.ParentFolder

Description

The ParentFolder property of an instance of the Folder object is used to return a new Folder object for the parent folder.

Example

Listing 9.107 is run in an Internet Explorer browser, and it contains a single button. When the button is clicked, an alert box pops up displaying the name of the parent folder.

Listing 9.107 Using the ParentFolder Property
 <html> <body> <script language="JScript"> <!-- Hide function get(){ // Create a FileSystemObject object var myObject = new ActiveXObject("Scripting.FileSystemObject"); // Create a Folder object var myFolder = myObject.GetFolder("c:\\Temp"); // Display the name of the parent folder alert (myFolder.ParentFolder.Path); } ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.