Skip to content

folder-object

Represents a file-system folder or directory in a platform-independent manner. All properties and methods resolve file system aliases automatically and act on the original file unless otherwise noted.


Folder( [path] ); // Can return a File object
new Folder( [path] ); // Always returns a Folder object

To create a Folder object, use the Folder function or the new operator. The constructor accepts full or partial path names, and returns the new object.

ParameterTypeDescription
pathStringOptional. The absolute or relative path to the Folder associated with this object, specified in platform-specific or URI format; see Specifying paths. The value stored in the object is the absolute path.
The path need not refer to an existing Folder. If not supplied, a temporary name is generated.
If the path refers to an existing file:
- The Folder function returns a File object instead of a File object.
- The new operator returns a Folder object for a nonexisting folder with the same name.
!!! warning
In After Effects on MacOS, if path.length is more than 1002, After Effects crashes.
This has been reported on MacOS 10.11.6 and After Effects 13.8 and 14.0.

These properties are available as static properties of the Folder class. It is not necessary to create an instance to access them.

Folder.appData

A Folder object for the folder that contains application data for all users.

  • In Windows, the value of %PROGRAMDATA% (by default, C:\ProgramData)
  • In Mac OS, /Library/Application Support

Folder. Read only.


Folder.appPackage

The Folder object for the folder that contains the bundle of the running application.

  • In Windows, for example: C:\Program Files (x86)\Adobe\Adobe ExtendScript Toolkit CC\
  • In Mac OS, for example: /Applications/Adobe ExtendScript Toolkit CC/ExtendScript Toolkit.app

String. Read only.


Folder.commonFiles

A Folder object for the folder that contains files common to all programs.

  • In Windows, the value of %CommonProgramFiles% (by default, C:\Program Files\Common Files)
  • In Mac OS, /Library/Application Support

Folder. Read only.


Folder.current

A Folder object for the current folder. Assign either a Folder object or a string containing the new path name to set the current folder.

Folder


Folder.desktop

A Folder object for the folder that contains the user’s desktop.

  • In Windows, C:\Users\[username]\Desktop
  • In Mac OS, ~/Desktop

Folder. Read only.


Folder.fs

The name of the file system.

One of:

  • Windows,
  • Macintosh, or
  • Unix

String. Read only.


Folder.myDocuments

A Folder object for the user’s default document folder.

  • In Windows, C:\Users\[username]\Documents
  • In Mac OS, ~/Documents

Folder. Read only.


Folder.startup

A Folder object for the folder containing the executable image of the running application.

Folder. Read only.


Folder.system

A Folder object for the folder containing the operating system files.

  • In Windows, the value of %windir% (by default, C:\Windows)
  • In Mac OS, /System

Folder. Read only.


Folder.temp

A Folder object for the default folder for temporary files.

Folder. Read only.


Folder.trash

  • In Mac OS, a Folder object for the folder containing deleted items.
  • In Windows, where the Recycle Bin is a database rather than a folder, value is null.

Folder or null. Read only.


Folder.userData

A Folder object for the folder that contains application data for the current user.

  • In Windows, the value of %APPDATA% (by default, C:\Users\[username]\Appdata\Roaming)
  • In Mac OS, ~/Library/Application Support

Folder. Read only.


These functions are available as a static methods of the Folder class. It is not necessary to create an instance in order to call them.

Folder.decode(uri)

Decodes the specified string as required by RFC 2396.

All special characters must be encoded in UTF-8 and stored as escaped characters starting with the percent sign followed by two hexadecimal digits. For example, the string "my%20file" is decoded as "my file". Special characters are those with a numeric value greater than 127, except the following:

``/ - _ . ! ~ * ' ( )``
ParameterTypeDescription
uriStringThe encoded string to decode.

String


Folder.encode(name)

Encodes the specified string as required by RFC 2396.

All special characters must be encoded in UTF-8 and stored as escaped characters starting with the percent sign followed by two hexadecimal digits. For example, the string "my%20file" is decoded as "my file". Special characters are those with a numeric value greater than 127, except the following:

``/ - _ . ! ~ * ' ( )``
ParameterTypeDescription
nameStringThe string to encode.

String


Folder.isEncodingAvailable(name)

Checks whether a given encoding is available.

ParameterTypeDescription
nameStringThe encoding name. Typical values are "ASCII", "binary", or "UTF-8". See File- and Folder-supported encoding names.

Boolean. true if your system supports the specified encoding, false otherwise.


Folder.selectDialog([prompt])

Opens the built-in platform-specific file-browsing dialog, and creates a new File or Folder object for the selected file or folder. Differs from the object method selectDlg() in that it does not preselect a folder.

ParameterTypeDescription
promptStringOptional. The prompt text, if the dialog allows a prompt.

If the user clicks OK, returns a File or Folder object for the selected file or folder.

If the user cancels, returns null.


These properties are available for Folder objects.

folderObj.absoluteURI

The full path name for the referenced folder in URI notation.

String. Read only.


folderObj.alias

When true, the object refers to a file system alias or shortcut.

Boolean. Read only.


folderObj.created

The creation date of the referenced folder, or null if the object does not refer to a folder on disk.

Date. Read only.


folderObj.displayName

The localized name of the referenced folder, without the path.

String. Read only.


folderObj.error

A message describing the most recent file system error; see File access error messages.

Typically set by the file system, but a script can set it. Setting this value clears any error message and resets the error bit for opened files. Contains the empty string if there is no error.

String


folderObj.exists

When true, this object refers to a folder that currently exists in the file system.

Boolean. Read only.


folderObj.fsName

The platform-specific name of the referenced folder as a full path name.

String. Read only.


folderObj.fullName

The full path name for the referenced folder in URI notation.

String. Read only.


folderObj.localizedName

A localized version of the folder name portion of the absolute URI for the referenced file, without the path specification.

String. Read only.


folderObj.modified

The date of the referenced folder’s last modification, or null if the object does not refer to a folder on disk.

Date. Read only.


folderObj.name

The folder name portion of the absolute URI for the referenced file, without the path specification.

String. Read only.


folderObj.parent

The Folder object for the folder that contains this folder, or null if this object refers to the root folder of a volume.

Folder. Read only.


folderObj.path

The path portion of the absolute URI for the referenced folder, without the folder name.

String. Read only.


folderObj.relativeURI

The path name for the referenced folder in URI notation, relative to the current folder.

String. Read only.


These functions are available for Folder objects.

folderObj.changePath(path)

ParameterTypeDescription
pathStringThe new path, absolute or relative to the current parent folder.

Changes the path specification of the referenced folder.

Boolean. true on success.


folderObj.create()

Creates a folder at the location given by this object’s path property.

Boolean. true if the folder was created successfully.


folderObj.execute()

Opens this folder in the platform-specific file browser (as if it had been double-clicked in the file browser).

Boolean. true immediately if the folder was opened successfully.


folderObj.getFiles([mask])

Retrieves the contents of this folder, filtered by the supplied mask.

ParameterTypeDescription
maskString or FunctionOptional. A search mask for file names.
A string that can contain question mark (?) and asterisk (*) wild cards. Default is “*”, which matches all file names.
Can also be the name of a function that takes a File or Folder object as its argument.
It is called for each file or folder found in the search; if it returns true, the object is added to the return array.
!!! note
In Windows, all aliases end with the extension .lnk; ExtendScript strips this from the file name when found, in order to preserve compatibility with other operating systems. You can search for all aliases by supplying the search mask "*.lnk", but note that such code is not portable.

Returns an array of File and Folder objects, or null if this object’s referenced folder does not exist.


folderObj.getRelativeURI([basePath])

Retrieves the path for this folder relative to the specified base path or the current folder, in URI notation.

ParameterTypeDescription
basePathStringOptional. The base path for the relative URI. Default is the current folder.

String


folderObj.remove()

Deletes the empty folder associated with this object from disk, immediately, without moving it to the system trash.

Folders must be empty before they can be deleted. Does not resolve aliases; instead, deletes the referenced alias or shortcut file itself.

Boolean. true if the folder is deleted successfully.


folderObj.rename(newName)

ParameterTypeDescription
newNameStringThe new folder name, with no path.

Renames the associated folder. Does not resolve aliases; instead, renames the referenced alias or shortcut file itself.

Boolean. true on success.


folderObj.resolve()

If this object references an alias or shortcut, this method resolves that alias

A new Folder object that references the file-system element to which the alias resolves, or null if this object does not reference an alias, or if the alias cannot be resolved.


folderObj.selectDlg(prompt)

Opens the built-in platform-specific file-browsing dialog, and creates a new File or Folder object for the selected file or folder.

Differs from the class method selectDialog() in that it preselects this folder.

ParameterTypeDescription
promptStringThe prompt text, if the dialog allows a prompt.

If the user clicks OK, returns a File or Folder object for the selected file or folder.

If the user cancels, returns null.