Class DirectoryImpl
java.lang.Object
org.apache.aries.util.filesystem.impl.FileImpl
org.apache.aries.util.filesystem.impl.DirectoryImpl
- All Implemented Interfaces:
Iterable<IFile>,IDirectory,IFile
An IDirectory representing a java.io.File whose isDirectory method returns true.
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.apache.aries.util.filesystem.impl.FileImpl
convertNested, equals, getName, getRoot, getSize, hashCode, isDirectory, isFile, toString, toURLMethods inherited from interface org.apache.aries.util.filesystem.IFile
convertNested, getName, getRoot, getSize, isDirectory, isFile, toURLMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
DirectoryImpl
- Parameters:
dir- the file to represent.rootFile- the file that represents the FS root.
-
-
Method Details
-
getFile
Description copied from interface:IDirectoryGets the requested file under this directory. The file may be located any number of levels within this directory. The name is relative to this directory. If the file cannot be found it will return null.- Specified by:
getFilein interfaceIDirectory- Parameters:
name- the name of the file.- Returns:
- the IFile, or null if no such file exists.
-
isRoot
public boolean isRoot()- Specified by:
isRootin interfaceIDirectory- Returns:
- true if this IDirectory is the root of the virtual file system.
-
listFiles
- Specified by:
listFilesin interfaceIDirectory- Returns:
- the list of files in this directory. Files must be in this directory and not in sub-directories.
-
listAllFiles
- Specified by:
listAllFilesin interfaceIDirectory- Returns:
- the list of files in all directories (including sub-directories). This is the complete list.
-
iterator
-
getParent
-
convert
-
open
Description copied from interface:IFileThe input stream returned by this method should always be closed after use.- Specified by:
openin interfaceIFile- Overrides:
openin classFileImpl- Returns:
- An InputStream to read the file from.
- Throws:
IOException
-
getLastModified
public long getLastModified()- Specified by:
getLastModifiedin interfaceIFile- Overrides:
getLastModifiedin classFileImpl- Returns:
- the last modified date of the file.
-
toCloseable
Description copied from interface:IDirectoryOpen a more effective implementation with user regulated resource management. The implementation will be more efficient for batch operations. Make sure to call close when finished with the returned IDirectory. IFiles and IDirectories other than the returned closeable directory will stay valid after calling the close method but will no longer perform as efficiently. InputStreams that are open at the time of calling close may be invalidated.- Specified by:
toCloseablein interfaceIDirectory- Returns:
ICloseableDirectoryor null if a batch aware version of thisIDirectoryis not supported
-