FilePathGetFullPath Method

This returns the fully qualified path for the specified path. This version allows wildcards in the filename part if present.

Definition

Namespace: HtmlToMamlConversion
Assembly: ConvertHtmlToMaml (in ConvertHtmlToMaml.exe) Version: 2022.3.11.0
public static string GetFullPath(
	string path
)

Parameters

path  String
The path to expand

Return Value

String
The fully qualified path name

Remarks

The System.IO.Path version of GetFullPath(String) will throw an exception if the path contains wildcard characters. This version does not.

See Also