Interface DeleteSpec

All Known Implementing Classes:
Delete

public interface DeleteSpec
A specification for deleting files from the filesystem.
Since:
2.13
  • Method Summary

    Modifier and Type
    Method
    Description
    delete(@Nullable Object... files)
    Specifies the files to delete.
    void
    setFollowSymlinks(boolean followSymlinks)
    Specifies whether or not symbolic links should be followed during deletion.
  • Method Details

    • delete

      DeleteSpec delete(@Nullable Object... files)
      Specifies the files to delete.
      Parameters:
      files - the list of files which should be deleted. Any type of object accepted by Project.files(Object...)
      Since:
      2.13
    • setFollowSymlinks

      void setFollowSymlinks(boolean followSymlinks)
      Specifies whether or not symbolic links should be followed during deletion.
      Parameters:
      followSymlinks - deletion will follow symlinks when true.
      Since:
      2.13