Uses of Interface
org.apache.commons.io.file.DeleteOption
-
Packages that use DeleteOption Package Description org.apache.commons.io.file This package provides extensions in the realm of java.nio.file. -
-
Uses of DeleteOption in org.apache.commons.io.file
Classes in org.apache.commons.io.file that implement DeleteOption Modifier and Type Class Description class
StandardDeleteOption
Defines the standard delete options.Fields in org.apache.commons.io.file declared as DeleteOption Modifier and Type Field Description static DeleteOption[]
PathUtils. EMPTY_DELETE_OPTION_ARRAY
EmptyLinkOption
array.Methods in org.apache.commons.io.file with parameters of type DeleteOption Modifier and Type Method Description static Counters.PathCounters
PathUtils. cleanDirectory(java.nio.file.Path directory, DeleteOption... deleteOptions)
Cleans a directory including sub-directories without deleting directories.static Counters.PathCounters
PathUtils. delete(java.nio.file.Path path, java.nio.file.LinkOption[] linkOptions, DeleteOption... deleteOptions)
Deletes a file or directory.static Counters.PathCounters
PathUtils. delete(java.nio.file.Path path, DeleteOption... deleteOptions)
Deletes a file or directory.static Counters.PathCounters
PathUtils. deleteDirectory(java.nio.file.Path directory, java.nio.file.LinkOption[] linkOptions, DeleteOption... deleteOptions)
Deletes a directory including sub-directories.static Counters.PathCounters
PathUtils. deleteDirectory(java.nio.file.Path directory, DeleteOption... deleteOptions)
Deletes a directory including sub-directories.static Counters.PathCounters
PathUtils. deleteFile(java.nio.file.Path file, java.nio.file.LinkOption[] linkOptions, DeleteOption... deleteOptions)
Deletes the given file.static Counters.PathCounters
PathUtils. deleteFile(java.nio.file.Path file, DeleteOption... deleteOptions)
Deletes the given file.static boolean
StandardDeleteOption. overrideReadOnly(DeleteOption[] options)
Returns true if the given options containStandardDeleteOption.OVERRIDE_READ_ONLY
.Constructors in org.apache.commons.io.file with parameters of type DeleteOption Constructor Description CleaningPathVisitor(Counters.PathCounters pathCounter, DeleteOption[] deleteOption, java.lang.String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.DeletingPathVisitor(Counters.PathCounters pathCounter, java.nio.file.LinkOption[] linkOptions, DeleteOption[] deleteOption, java.lang.String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.DeletingPathVisitor(Counters.PathCounters pathCounter, DeleteOption[] deleteOption, java.lang.String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.
-