All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pxb.java.nio.file.FileVisitor Maven / Gradle / Ivy

There is a newer version: 2.25.11
Show newest version
package pxb.java.nio.file;

import java.io.IOException;
import pxb.java.nio.file.attribute.BasicFileAttributes;

public interface  FileVisitor {

    FileVisitResult preVisitDirectory(T dir, BasicFileAttributes attrs)
            throws IOException;

    FileVisitResult visitFile(T file, BasicFileAttributes attrs)
            throws IOException;

    FileVisitResult visitFileFailed(T file, IOException exc)
            throws IOException;

    FileVisitResult postVisitDirectory(T dir, IOException exc)
            throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy