CMISCreateFolder

Creates a folder on the CMIS server.

Member of namespace

CMISClient

Syntax

bool CMISCreateFolder(string cmisFolderParentPath, string cmisFolderName)

Parameters

cmisFolderParentPath
Type: string
cmisFolderName
Type: string

Parameters

  • cmisFolderParentPath : The path of the parent folder.
  • cmisFolderName : The name of the new folder.

Smart parameters are supported for all parameters.

Returns

True if the folder is created. Otherwise, False.

Level

All levels.

Details

Creates a folder on the configured CMIS server.

Note that objects created on the CMIS server may not be immediately accessible by the client. For example, the indexing service on your CMIS server may run on a configured interval, so your new object may not be available until the indexing service completes. If you are having trouble accessing newly created objects, check the settings and documentation of your CMIS server to determine when objects should become available.

Example:
CMISCreateFolder("/MyParent","MyNewFolder") 

Creates the folder MyNewFolder in the MyParent folder.