Deletes a folder at the specified path.

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public string DeleteFolder(
	string path
)
Visual Basic
Public Function DeleteFolder ( 
	path As String
) As String
Visual C++
public:
String^ DeleteFolder(
	String^ path
)
F#
member DeleteFolder : 
        path : string -> string 

Parameters

path
Type: System..::..String
Folder path.

Return Value

Type: String
Empty string if operation was successful; error message if an error occured.

See Also