Folder.Name

JScript3.0+Syntax

							folder.Name

Description

The Name property of an instance of the Folder object is used to either set or get the name of the folder.

Example

Listing 9.106 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 folder.

Listing 9.106 Example of the Name 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 folder alert (myFolder.Name); } // End hide--> </script> Get the name of the c:\temp folder. ...

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.