- java.lang.Object
-
- java.nio.file.SimpleFileVisitor<T>
-
- Type Parameters:
T
- The type of reference to the files
- All Implemented Interfaces:
- FileVisitor<T>
public class SimpleFileVisitor<T> extends Object implements FileVisitor<T>
A simple visitor of files with default behavior to visit all files and to re-throw I/O errors.Methods in this class may be overridden subject to their general contract.
- Since:
- 1.7
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
SimpleFileVisitor()
Initializes a new instance of this class.
-
Method Summary
Methods Modifier and Type Method and Description FileVisitResult
postVisitDirectory(T dir, IOException exc)
Invoked for a directory after entries in the directory, and all of their descendants, have been visited.FileVisitResult
preVisitDirectory(T dir, BasicFileAttributes attrs)
Invoked for a directory before entries in the directory are visited.FileVisitResult
visitFile(T file, BasicFileAttributes attrs)
Invoked for a file in a directory.FileVisitResult
visitFileFailed(T file, IOException exc)
Invoked for a file that could not be visited.
-
-
-
Constructor Detail
-
SimpleFileVisitor
protected SimpleFileVisitor()
Initializes a new instance of this class.
-
-
Method Detail
-
preVisitDirectory
public FileVisitResult preVisitDirectory(T dir, BasicFileAttributes attrs) throws IOException
Invoked for a directory before entries in the directory are visited.Unless overridden, this method returns
CONTINUE
.- Specified by:
preVisitDirectory
in interfaceFileVisitor<T>
- Parameters:
dir
- a reference to the directoryattrs
- the directory's basic attributes- Returns:
- the visit result
- Throws:
IOException
- if an I/O error occurs
-
visitFile
public FileVisitResult visitFile(T file, BasicFileAttributes attrs) throws IOException
Invoked for a file in a directory.Unless overridden, this method returns
CONTINUE
.- Specified by:
visitFile
in interfaceFileVisitor<T>
- Parameters:
file
- a reference to the fileattrs
- the file's basic attributes- Returns:
- the visit result
- Throws:
IOException
- if an I/O error occurs
-
visitFileFailed
public FileVisitResult visitFileFailed(T file, IOException exc) throws IOException
Invoked for a file that could not be visited.Unless overridden, this method re-throws the I/O exception that prevented the file from being visited.
- Specified by:
visitFileFailed
in interfaceFileVisitor<T>
- Parameters:
file
- a reference to the fileexc
- the I/O exception that prevented the file from being visited- Returns:
- the visit result
- Throws:
IOException
- if an I/O error occurs
-
postVisitDirectory
public FileVisitResult postVisitDirectory(T dir, IOException exc) throws IOException
Invoked for a directory after entries in the directory, and all of their descendants, have been visited.Unless overridden, this method returns
CONTINUE
if the directory iteration completes without an I/O exception; otherwise this method re-throws the I/O exception that caused the iteration of the directory to terminate prematurely.- Specified by:
postVisitDirectory
in interfaceFileVisitor<T>
- Parameters:
dir
- a reference to the directoryexc
-null
if the iteration of the directory completes without an error; otherwise the I/O exception that caused the iteration of the directory to complete prematurely- Returns:
- the visit result
- Throws:
IOException
- if an I/O error occurs
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/nio/file/SimpleFileVisitor.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.