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

Packages that use FileSystem
org.das2.fsm fsm contains objects that model files that are stored in a FileSystem with the filename parametric in time. 
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 FileSystem in org.das2.fsm
 

Methods in org.das2.fsm that return FileSystem
 FileSystem FileStorageModel.getFileSystem()
           
 

Methods in org.das2.fsm with parameters of type FileSystem
static FileStorageModel FileStorageModel.create(FileSystem root, java.lang.String template)
          %Y 4-digit year %y 2-digit year %m 2-digit month %d 2-digit day of month %j 3-digit day of year %H 2-digit hour %M 2-digit minute %b month name
static FileStorageModelNew FileStorageModelNew.create(FileSystem root, java.lang.String template)
          creates a FileStorageModel for the given template, which uses: %Y-%m-%dT%H:%M:%S.%{milli}Z"; %Y 4-digit year %m 2-digit month %d 2-digit day of month %j 3-digit day of year %H 2-digit Hour %M 2-digit Minute %S 2-digit second %{milli} 3-digit milliseconds
static FileStorageModel FileStorageModel.create(FileSystem root, java.lang.String regex, int[] digitList)
           
static FileStorageModelNew FileStorageModelNew.create(FileSystem root, java.lang.String template, java.lang.String fieldName, TimeParser.FieldHandler fieldHandler)
          creates a FileStorageModel for the given template, but with a custom FieldHandler and field.
 

Constructors in org.das2.fsm with parameters of type FileSystem
FileStorageModel(FileStorageModel parent, FileSystem root, java.lang.String regex, FileStorageModel.FieldHandler[] handlers)
           
 

Uses of FileSystem in org.das2.util.filesystem
 

Subclasses of FileSystem in org.das2.util.filesystem
 class FTPFileSystem
           
 class HttpFileSystem
           
 class LocalFileSystem
           
 class SubFileSystem
           
 class WebFileSystem
          Base class for HTTP and FTP-based filesystems.
 

Methods in org.das2.util.filesystem that return FileSystem
static FileSystem FileSystem.create(java.net.URL root)
          Creates a FileSystem by parsing the URL and creating the correct FS type.
 FileSystem FileSystem.createFileSystem(java.lang.String directory)
          create a new filesystem that is a part of this filesystem, rooted at directory.
 FileSystem FileSystemFactory.createFileSystem(java.net.URL root)
           
 FileSystem FtpFileSystemFactory.createFileSystem(java.net.URL root)
           
 FileSystem HttpFileSystemFactory.createFileSystem(java.net.URL root)
           
 FileSystem LocalFileSystemFactory.createFileSystem(java.net.URL root)
           
 

Methods in org.das2.util.filesystem with parameters of type FileSystem
static FileObject[] Glob.unGlob(FileSystem fs, java.lang.String glob)
          unglob the glob into an array of the matching FileObjects.
 

Constructors in org.das2.util.filesystem with parameters of type FileSystem
SubFileSystem(FileSystem parent, java.lang.String dir)