ActionEngineUtilResolveFilename Method

Resolve the supplied path and filename to return all files that match that name, including wildcards.

Definition

Namespace: ActionEngine
Assembly: ActionEngine (in ActionEngine.dll) Version: 26.2117.4453
C#
public static List<FileInfo> ResolveFilename(
	string fullFilename,
	bool create
)

Parameters

fullFilename  String
The full filename to parse.
create  Boolean
Value indicating whether the file will be created if it doesn't yet exist.

Return Value

ListFileInfo
List of existing files found.

Remarks

This method does not distinguish a difference between a file and a directory. That is left to the calling procedure.

See Also