Comparable<Task>
, DeleteSpec
, org.gradle.api.internal.DynamicObjectAware
, org.gradle.api.internal.IConventionAware
, org.gradle.api.internal.TaskInternal
, ExtensionAware
, Task
, org.gradle.util.Configurable<Task>
public class Delete extends org.gradle.api.internal.ConventionTask implements DeleteSpec
Deletes files or directories. Example:
task makePretty(type: Delete) { delete 'uglyFolder', 'uglyFile' followSymlinks = true }Be default symlinks will not be followed when deleting files. To change this behavior call
setFollowSymlinks(boolean)
with true. On systems that do not support symlinks,
this will have no effect.Task.Namer
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
Constructor | Description |
---|---|
Delete() |
Modifier and Type | Method | 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.
|
protected org.gradle.api.internal.file.FileResolver |
getFileResolver() |
|
protected org.gradle.internal.nativeintegration.filesystem.FileSystem |
getFileSystem() |
|
FileCollection |
getTargetFiles() |
Returns the resolved set of files which will be deleted by this task.
|
boolean |
isFollowSymlinks() |
Returns if symlinks should be followed when doing a delete.
|
void |
setDelete(Object target) |
Sets the files to be deleted by this task.
|
void |
setDelete(Set<Object> targets) |
Sets the files to be deleted by this task.
|
void |
setFollowSymlinks(boolean followSymlinks) |
Set if symlinks should be followed.
|
addValidator, appendParallelSafeAction, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doFirst, doLast, doLast, doLast, execute, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExecuter, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, isHasCustomActions, leftShift, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toString
conventionMapping, conventionMapping, getConventionMapping
newInputDirectory, newInputFile, newOutputDirectory, newOutputFile
@Inject protected org.gradle.internal.nativeintegration.filesystem.FileSystem getFileSystem()
@Inject protected org.gradle.api.internal.file.FileResolver getFileResolver()
protected void clean()
@Destroys public FileCollection getTargetFiles()
@Internal public Set<Object> getDelete()
public void setDelete(Set<Object> targets)
targets
- A set of any type of object accepted by Project.files(Object...)
public void setDelete(Object target)
target
- Any type of object accepted by Project.files(Object...)
@Incubating @Input public boolean isFollowSymlinks()
@Incubating public void setFollowSymlinks(boolean followSymlinks)
setFollowSymlinks
in interface DeleteSpec
followSymlinks
- if symlinks should be followed.public Delete delete(Object... targets)
Project.files(Object...)
.delete
in interface DeleteSpec
targets
- Any type of object accepted by Project.files(Object...)