IFolder Interface

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

Contentsread-onlyIFolder

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

CreateIFolder

Creates the folder if it does not already exist.

IDL HRESULT Create(
    [in] VARIANT_BOOL bCreateHierarchy)
.NET void Create(
    Boolean bCreateHierarchy)
  • bCreateHierarchy
    If the path to the specified folder does not exist and bCreateHierarchy is true, it should be created.