Summary
    Cleans the specified directory.
    
		- Namespace
 - Cake
.Common .IO  - Containing Type
 - DirectoryAliases
 
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Clean")]
public static void CleanDirectory(this ICakeContext context, DirectoryPath path, CleanDirectorySettings settings)
	Examples
CleanDirectory("./src/Cake.Common/obj", new CleanDirectorySettings {
    Force = true
});
    Attributes
| Type | Description | 
|---|---|
| Cake | 
						An attribute used to mark script method aliases. | 
| Cake | 
						An attribute used for documentation of alias methods/properties. | 
Parameters
| Name | Type | Description | 
|---|---|---|
| context | ICakeContext | The context. | 
| path | DirectoryPath | The directory path. | 
| settings | Clean | 
						The clean settings. | 
Return Value
| Type | Description | 
|---|---|
| void | 
