File PathGet Full Path Method
This returns the fully qualified path for the specified path. This version allows wildcards in the
filename part if present.
Definition
Namespace: Sandcastle.Core
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
The fully qualified path name
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public static string GetFullPath(
string path
)VB
Public Shared Function GetFullPath (
path As String
) As StringC++
public:
static String^ GetFullPath(
String^ path
)F#
static member GetFullPath :
path : string -> string Parameters
- path String
- The path to expand
Return Value
StringThe 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.