Folder (Object)

Represents the folder object.
It allows you to manipulate folders and gives access to information about them.

Properties


Property Files() As (Read Only)
Returns the file collection of the folder.
Example:
This example retrieves in TestFiles the file collection of the folder TestFolder.
 Dim TestFiles As Files
 Set TestFiles = TestFolder.Files
 
Property SubFolders() As (Read Only)
Returns the folder collection of the folder.
Example:
This example retrieves in TestSubFolders the folder colection of the folder TestFolder.
 Dim TestSubFolders As CATIAFolders
 Set TestSubFolders = TestFolder.SubFolders