PathGetRegularPath Method |
[AlphaFS] Gets the regular path from long prefixed one. i.e.: "\\?\C:\Temp\file.txt" to C:\Temp\file.txt" or: "\\?\UNC\Server\share\file.txt" to "\\Server\share\file.txt".
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static string GetRegularPath(
string path
)
Public Shared Function GetRegularPath (
path As String
) As String
public:
static String^ GetRegularPath(
String^ path
)
static member GetRegularPath :
path : string -> string
Parameters
- path
- Type: SystemString
The path.
Return Value
Type:
StringRegular form path string.
Remarks This method does not handle paths with volume names, eg. \\?\Volume{GUID}\Folder\file.txt.
See Also