Click or drag to resize
ApplicationUtils.GetFilesOfTypeFromFolders Method
Gets the files matching a given type pattern from the folders specified.

Namespace:  SD.LLBLGen.Pro.ApplicationCore
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static List<string> GetFilesOfTypeFromFolders(
	IEnumerable<string> foldersToTraverse,
	string fileTypePattern
)

Parameters

foldersToTraverse
Type: System.Collections.Generic.IEnumerable<String>
The folders to traverse. (full paths)
fileTypePattern
Type: System.String
The file type pattern.

Return Value

Type: List<String>
the filenames of the files matching the pattern specified in the folders specified.
See Also