IFolder Interface
On this page:
Description
This interface is implemented by components that represent folders within the plugin’s file system. It augments the properties and methods provided by the IFileSystemItem interface, which should also be implemented by the component.
Properties
Contents read-only, IFolder
A collection component that enables the files and folders contained within the folder to be enumerated.
IDL |
[propget] HRESULT Contents([out, retval] IFolderContents** pValue)
|
---|---|
.NET | IFolderContents Contents[get] |
Methods
Create IFolder
Creates the folder if it does not already exist.
IDL |
HRESULT Create(
|
---|---|
.NET | void Create( |
bCreateHierarchy
If the path to the specified folder does not exist andbCreateHierarchy
istrue
, it should be created.