 | Connection.CreateNewFolder Method |
Makes sure the folder does exist in the vault and optionally updates its properties
Namespace:
ICMeridianAPI
Assembly:
ICMeridianAPI (in ICMeridianAPI.dll) Version: 4.1.0.0 (4.1.0.0)
Syntaxpublic string CreateNewFolder(
string vaultidentifier,
string folderpath,
Object properties = null,
Object values = null
)
Public Function CreateNewFolder (
vaultidentifier As String,
folderpath As String,
Optional properties As Object = Nothing,
Optional values As Object = Nothing
) As String
Parameters
- vaultidentifier
- Type: System.String
The vault in which the new folder should be created. - folderpath
- Type: System.String
Path for the folder - properties (Optional)
- Type: System.Object
An array of property names for the folder that need to be initialized with values. - values (Optional)
- Type: System.Object
An array of values for the properties specified in the properties parameter.
The dimensions of the properties array and values array should be identical.
The values array must be an array of variants.
Return Value
Type:
StringID of the created folder
RemarksIf the folder already exists it is not considered as an error
See Also