Delete

API Documentation:Delete

Deletes files or directories. Example:

task makePretty(type: Delete) {
  delete 'uglyFolder', 'uglyFile'
}

Properties

PropertyDescription
delete

The set of files which will be deleted by this task.

targetFiles

The resolved set of files which will be deleted by this task.

Methods

MethodDescription
delete(targets)

Adds some files to be deleted by this task. The given targets are evaluated as per Project.files().

Script blocks

No script blocks

Property details

Set<Object> delete

The set of files which will be deleted by this task.

FileCollection targetFiles (read-only)

The resolved set of files which will be deleted by this task.

Method details

Delete delete(Object... targets)

Adds some files to be deleted by this task. The given targets are evaluated as per Project.files().