Uses of Class
org.das2.util.filesystem.FileObject

Packages that use FileObject
org.das2.util.filesystem The fileSystem package introduces a filesystem abstraction that allows various types of file systems to be accessed in a convenient and uniform way. 
 

Uses of FileObject in org.das2.util.filesystem
 

Subclasses of FileObject in org.das2.util.filesystem
 class LocalFileObject
           
 class WebFileObject
           
 

Methods in org.das2.util.filesystem that return FileObject
abstract  FileObject[] FileObject.getChildren()
          returns objects within a folder.
 FileObject[] LocalFileObject.getChildren()
           
 FileObject[] WebFileObject.getChildren()
           
abstract  FileObject FileSystem.getFileObject(java.lang.String filename)
          return the FileObject that corresponds to the name.
 FileObject LocalFileSystem.getFileObject(java.lang.String filename)
           
 FileObject SubFileSystem.getFileObject(java.lang.String filename)
           
 FileObject WebFileSystem.getFileObject(java.lang.String filename)
           
abstract  FileObject FileObject.getParent()
          returns the parent FileObject (a folder).
 FileObject LocalFileObject.getParent()
           
 FileObject WebFileObject.getParent()
           
static FileObject[] Glob.unGlob(FileSystem fs, java.lang.String glob)
          unglob the glob into an array of the matching FileObjects.