  | INameServerClientProtocolDelete Method | 
            Deletes the specified file or directory.
            
Namespace: Ookii.Jumbo.DfsAssembly: Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxbool Delete(
	string path,
	bool recursive
)
Function Delete ( 
	path As String,
	recursive As Boolean
) As Boolean
bool Delete(
	String^ path, 
	bool recursive
)
abstract Delete : 
        path : string * 
        recursive : bool -> bool Parameters
- path  String
 - The path of the file or directory to delete.
 - recursive  Boolean
 -  to delete all children if path refers to a directory; otherwise .
 
Return Value
Boolean if the file was deleted; 
 if it doesn't exist.
See Also