Click or drag to resize

PathGetSuffixedDirectoryName Method

[AlphaFS] Returns the directory information for the specified path with a trailing DirectorySeparatorChar character.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static string GetSuffixedDirectoryName(
	string path
)

Parameters

path
Type: SystemString
The path.

Return Value

Type: String

The suffixed directory information for the specified path with a trailing DirectorySeparatorChar character,

or if path is or if path denotes a root (such as "\", "C:", or * "\\server\share").

Remarks
This method is similar to calling Path.GetDirectoryName() + Path.AddTrailingDirectorySeparator()
See Also