org.apache.commons.io.file
Class CleaningPathVisitor
- java.lang.Object
-
- java.nio.file.SimpleFileVisitor<Path>
-
- org.apache.commons.io.file.SimplePathVisitor
-
- org.apache.commons.io.file.CountingPathVisitor
-
- org.apache.commons.io.file.CleaningPathVisitor
-
- All Implemented Interfaces:
- FileVisitor< Path>, PathVisitor
public class CleaningPathVisitor extends CountingPathVisitor
Deletes files but not directories as a visit proceeds.- Since:
- 2.7
-
Constructor Summary
Constructors Constructor and Description CleaningPathVisitor(Counters.PathCounters pathCounter, DeleteOption[] deleteOption, String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.CleaningPathVisitor(Counters.PathCounters pathCounter, String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description boolean
equals(Object obj)
int
hashCode()
FileVisitResult
preVisitDirectory(Path dir, BasicFileAttributes attributes)
FileVisitResult
visitFile(Path file, BasicFileAttributes attributes)
static CountingPathVisitor
withBigIntegerCounters()
Creates a new instance configured with a BigIntegerCounters.PathCounters
.static CountingPathVisitor
withLongCounters()
Creates a new instance configured with a longCounters.PathCounters
.Methods inherited from class org.apache.commons.io.file.CountingPathVisitor
getPathCounters, postVisitDirectory, toString, updateDirCounter, updateFileCounters
Methods inherited from class java.nio.file.SimpleFileVisitor
visitFileFailed
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.nio.file.FileVisitor
visitFileFailed
-
Constructor Detail
CleaningPathVisitor
public CleaningPathVisitor(Counters.PathCounters pathCounter, DeleteOption[] deleteOption, String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.- Parameters:
-
pathCounter
- How to count visits. -
deleteOption
- How deletion is handled. -
skip
- The files to skip deleting. - Since:
- 2.8.0
CleaningPathVisitor
public CleaningPathVisitor(Counters.PathCounters pathCounter, String... skip)
Constructs a new visitor that deletes files except for the files and directories explicitly given.- Parameters:
-
pathCounter
- How to count visits. -
skip
- The files to skip deleting.
Method Detail
withBigIntegerCounters
public static CountingPathVisitor withBigIntegerCounters()
Creates a new instance configured with a BigIntegerCounters.PathCounters
.- Returns:
-
a new instance configured with a BigInteger
Counters.PathCounters
.
withLongCounters
public static CountingPathVisitor withLongCounters()
Creates a new instance configured with a longCounters.PathCounters
.- Returns:
-
a new instance configured with a long
Counters.PathCounters
.
equals
public boolean equals(Object obj)
- Overrides:
-
equals
in classCountingPathVisitor
hashCode
public int hashCode()
- Overrides:
-
hashCode
in classCountingPathVisitor
preVisitDirectory
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attributes) throws IOException
- Specified by:
-
preVisitDirectory
in interfaceFileVisitor<Path>
- Overrides:
-
preVisitDirectory
in classCountingPathVisitor
- Throws:
-
IOException
visitFile
public FileVisitResult visitFile(Path file, BasicFileAttributes attributes) throws IOException
- Specified by:
-
visitFile
in interfaceFileVisitor<Path>
- Overrides:
-
visitFile
in classCountingPathVisitor
- Throws:
-
IOException
Copyright © 2002–2021 The Apache Software Foundation. All rights reserved.