| FilePathGetFullPath Method |
This returns the fully qualified path for the specified path. This version allows wildcards in the
filename part if present.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
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:
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.
See Also