org.gradle.api.file
Interface FileVisitDetails


public interface FileVisitDetails

Contains details about the file or directory being visited.


Method Summary
 java.io.File getFile()
          Returns the file being visited.
 RelativePath getRelativePath()
          Returns the path of the file being visited.
 void stopVisiting()
          Requests that file visiting terminate after the current file.
 

Method Detail

getFile

java.io.File getFile()
Returns the file being visited.

Returns:
The file. Never returns null.

getRelativePath

RelativePath getRelativePath()
Returns the path of the file being visited.

Returns:
The path. Never returns null.

stopVisiting

void stopVisiting()
Requests that file visiting terminate after the current file.