org.das2.util.filesystem
Class FileSystem.DirectoryEntry

java.lang.Object
  extended by org.das2.util.filesystem.FileSystem.DirectoryEntry
Enclosing class:
FileSystem

public class FileSystem.DirectoryEntry
extends java.lang.Object

DirectoryEntry defines a structure for containing directory entry data.


Field Summary
 long modified
          modified date, in seconds since 1970.
 java.lang.String name
          the name within the context of the directory.
 long size
          the length in bytes of the entry
 char type
          the type of entry.
 
Constructor Summary
FileSystem.DirectoryEntry()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name
the name within the context of the directory.


type

public char type
the type of entry. d=directory, f=file


size

public long size
the length in bytes of the entry


modified

public long modified
modified date, in seconds since 1970.

Constructor Detail

FileSystem.DirectoryEntry

public FileSystem.DirectoryEntry()