Package org.gradle.api.file
Interface Directory
- All Superinterfaces:
- FileSystemLocation
Represents a directory at some fixed location on the file system.
 
 Note: This interface is not intended for implementation by build script or plugin authors. An instance of this class can be created
 using the dir(String) method or using various methods on ProjectLayout such as ProjectLayout.getProjectDirectory().
- Since:
- 4.1
- 
Method SummaryModifier and TypeMethodDescriptionReturns aDirectorywhose location is the given path, resolved relative to this directory.dir(Provider<? extends CharSequence> path) Returns aRegularFilewhose location is the given path, resolved relative to this directory.file(Provider<? extends CharSequence> path) Returns aProviderwhose value is aRegularFilewhose location is the given path resolved relative to this directory.Returns aFileCollectioncontaining the given files, whose locations are the given paths resolved relative to this directory, as defined byProject.files(Object...).Returns the location of this directory, as an absoluteFile.Returns aFileTreethat allows the files and directories contained in this directory to be queried.
- 
Method Details- 
getAsFileFile getAsFile()Returns the location of this directory, as an absoluteFile.- Specified by:
- getAsFilein interface- FileSystemLocation
- Returns:
- the File
- Since:
- 4.2
 
- 
getAsFileTreeFileTree getAsFileTree()Returns aFileTreethat allows the files and directories contained in this directory to be queried.
- 
dirReturns aDirectorywhose location is the given path, resolved relative to this directory.- Parameters:
- path- The path. Can be absolute.
- Returns:
- The directory.
 
- 
dirReturns aProviderwhose value is aDirectorywhose location is the given path resolved relative to this directory.The return value is live and the provided pathis queried each time the return value is queried.- Parameters:
- path- The path provider. Can have value that is an absolute path.
- Returns:
- The provider.
 
- 
fileReturns aRegularFilewhose location is the given path, resolved relative to this directory.- Parameters:
- path- The path. Can be absolute.
- Returns:
- The file.
 
- 
fileReturns aProviderwhose value is aRegularFilewhose location is the given path resolved relative to this directory.The return value is live and the provided pathis queried each time the return value is queried.- Parameters:
- path- The path provider. Can have value that is an absolute path.
- Returns:
- The file.
 
- 
filesReturns aFileCollectioncontaining the given files, whose locations are the given paths resolved relative to this directory, as defined byProject.files(Object...). This method can also be used to create an empty collection, but the collection may not be mutated later.- Parameters:
- paths- The paths to the files. May be empty.
- Returns:
- The file collection.
- Since:
- 6.0
 
 
-