Creates a new sub-folder in the folder with the specified type and name.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCFolder NewFolder(
	string name,
	BCFolderType type
)
Visual Basic
Public Function NewFolder ( _
	name As String, _
	type As BCFolderType _
) As BCFolder
Visual C++
public:
BCFolder^ NewFolder(
	String^ name, 
	BCFolderType^ type
)

Parameters

name
Type: System..::..String
The name of the sub-folder to create. If nullNothingnullptra null reference (Nothing in Visual Basic) or an empty string then the sub-folder will have auto-generated name.
type
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCFolderType
The sub-folder type to create. If nullNothingnullptra null reference (Nothing in Visual Basic), then a normal folder is created (the AMFolder type).

Return Value

The created sub-folder.

See Also