PathGetDirectoryNameWithoutRoot Method (String) |
[AlphaFS] Returns the directory information for the specified path string without the root information, for example: "C:\Windows\system32" returns: "Windows".
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static string GetDirectoryNameWithoutRoot(
string path
)
Public Shared Function GetDirectoryNameWithoutRoot (
path As String
) As String
public:
static String^ GetDirectoryNameWithoutRoot(
String^ path
)
static member GetDirectoryNameWithoutRoot :
path : string -> string
Parameters
- path
- Type: SystemString
The path.
Return Value
Type:
StringThe
pathwithout the file name part and without the root information (if any), or
if
path is
or if
path denotes a root (such as "\", "C:", or * "\\server\share").
See Also