Click or drag to resize
PathGetDirectoryName Method
Returns the directory information for the specified path string.

Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static string GetDirectoryName(
	string path
)

Parameters

path
Type: SystemString
The path of a file or directory.

Return Value

Type: String
Directory information for path, or null if path denotes a root directory or is null. Returns Empty if path does not contain directory information.
Exceptions
ExceptionCondition
ArgumentExceptionThe path parameter contains invalid characters, is empty, or contains only white spaces.
PathTooLongExceptionThe path parameter is longer than the system-defined maximum length.
See Also