Deletes files or directories. Example:
task makePretty(type: Delete) { delete 'uglyFolder', 'uglyFile' }
Type | Name and description |
---|---|
protected void |
clean() |
Delete |
delete(Object... targets) Adds some files to be deleted by this task. |
Set<Object> |
getDelete() Returns the set of files which will be deleted by this task. |
FileCollection |
getTargetFiles() Returns the resolved set of files which will be deleted by this task. |
void |
setDelete(Object target) Sets the files to be deleted by this task. |
Adds some files to be deleted by this task. The given targets are evaluated as per Project.files.
targets
- Any type of object accepted by Project.filesReturns the set of files which will be deleted by this task.
Returns the resolved set of files which will be deleted by this task.
Sets the files to be deleted by this task.
target
- Any type of object accepted by Project.files