PublicAPI.Docflow.Folder.FindFolders ELMA API Documentation
Find folders by name
 
 
Syntax

public IEnumerable<Folder> FindFolders(
	string folderName
)

Return Value

Type: IEnumerable Folder 
Folders collection
Examples

//names of the folders to find 
var myFolderName = "New Folder";

//find folders by name 
var findedFolders = PublicAPI.Docflow.Folder.FindFolders(myFolderName);

//findedFolders - found folders
See Also