Click or drag to resize
DirectoryDelete Method (String)
Deletes an empty directory from a specified path.

Namespace: Alphaleonis.Win32.Filesystem
Assembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static void Delete(
	string path
)

Parameters

path
Type: SystemString
The name of the empty directory to remove. This directory must be writable and empty.
Exceptions
ExceptionCondition
ArgumentExceptionThe path parameter contains invalid characters, is empty, or contains only white spaces.
ArgumentNullException
DirectoryNotFoundException
Remarks
MSDN: .NET 4+ Trailing spaces are removed from the end of the path parameter before deleting the directory.
See Also