FilePath.GetFullPath Method

HTML to MAML Converter

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

Namespace: SandcastleBuilder.Utils
Assembly: ConvertHtmlToMaml (in ConvertHtmlToMaml.exe) Version: 1.0.0.2
Syntax
public static string GetFullPath(
	string path
)
Public Shared Function GetFullPath ( 
	path As String
) As String
public:
static String^ GetFullPath(
	String^ path
)
static member GetFullPath : 
        path : string -> string 

Parameters

path
Type: SystemString
The path to expand

Return Value

Type: 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