Uses of Class
com.blackrook.fs.FSFile
-
Packages that use FSFile Package Description com.blackrook.fs Contains the classes and interfaces that make up the file system elements.com.blackrook.fs.archive Contains the classes for certain file folder types. -
-
Uses of FSFile in com.blackrook.fs
Methods in com.blackrook.fs that return FSFile Modifier and Type Method Description FSFile[]
FileSystem. getAllFileInstances(String path)
Retrieves all of the instances of a file from the system.FSFile[]
FileSystem. getAllFiles()
Retrieves all of the recent instances of a file from the system.FSFile[]
FileSystem. getAllFiles(FSFileFilter filter)
Retrieves all of the recent instances of the files within this system that pass the filter test as FSFile objects.abstract FSFile[]
FSFileArchive. getAllFiles()
Retrieves all of the files within this object as FSFile objects.abstract FSFile[]
FSFileArchive. getAllFiles(FSFileFilter filter)
Retrieves all of the files within this object that pass the filter test as FSFile objects.FSFile[]
FileSystem. getAllFilesInDir(String path)
Retrieves all of the recent instances of the files within this system as FSFile objects.FSFile[]
FileSystem. getAllFilesInDir(String path, FSFileFilter filter)
Retrieves all of the recent instances of the files within this system that pass the filter test as FSFile objects.abstract FSFile[]
FSFileArchive. getAllFilesInDir(String path)
Retrieves all of the files within a directory as FSFile objects.abstract FSFile[]
FSFileArchive. getAllFilesInDir(String path, FSFileFilter filter)
Retrieves all of the files within this object as FSFile objects that pass the filter test.FSFile
FileSystem. getFile(String path)
Retrieves a file from the system.abstract FSFile
FSFileArchive. getFile(String path)
Returns an FSFile reference of a file within this wrapped file.Methods in com.blackrook.fs with parameters of type FSFile Modifier and Type Method Description boolean
FSFileFilter. accept(FSFile f)
Tests if a file is accepted by this filter.int
FSFile. compareTo(FSFile file)
boolean
FSFile. equals(FSFile file)
Checks if this file equals another file. -
Uses of FSFile in com.blackrook.fs.archive
Subclasses of FSFile in com.blackrook.fs.archive Modifier and Type Class Description protected class
ClasspathArchive.ClasspathFile
protected class
FolderArchive.FolderFile
Methods in com.blackrook.fs.archive that return FSFile Modifier and Type Method Description FSFile[]
ClasspathArchive. getAllFiles()
FSFile[]
ClasspathArchive. getAllFiles(FSFileFilter filter)
FSFile[]
FolderArchive. getAllFiles()
FSFile[]
FolderArchive. getAllFiles(FSFileFilter filter)
FSFile[]
ZipArchive. getAllFiles()
FSFile[]
ZipArchive. getAllFiles(FSFileFilter filter)
FSFile[]
ClasspathArchive. getAllFilesInDir(String path)
FSFile[]
ClasspathArchive. getAllFilesInDir(String path, FSFileFilter filter)
FSFile[]
FolderArchive. getAllFilesInDir(String path)
FSFile[]
FolderArchive. getAllFilesInDir(String path, FSFileFilter filter)
FSFile[]
ZipArchive. getAllFilesInDir(String path)
FSFile[]
ZipArchive. getAllFilesInDir(String path, FSFileFilter filter)
FSFile
ClasspathArchive. getFile(String path)
FSFile
FolderArchive. getFile(String path)
FSFile
ZipArchive. getFile(String path)
Methods in com.blackrook.fs.archive with parameters of type FSFile Modifier and Type Method Description int
ClasspathArchive.ClasspathFile. compareTo(FSFile fsf)
int
FolderArchive.FolderFile. compareTo(FSFile fsf)
-