seda.sandStorm.lib.aDisk
Class AFileStat

java.lang.Object
  extended by seda.sandStorm.lib.aDisk.AFileStat

public class AFileStat
extends java.lang.Object

This class provides information about a file. Use AFile.seek() to obtain this information.

See Also:
AFile

Field Summary
 AFile afile
          The AFile corresponding to this AFileStat.
 boolean canRead
          True if the file is readable.
 boolean canWrite
          True if the file is writable.
 boolean isDirectory
          True if the file is a directory.
 long length
          The length of the file in bytes.
 
Constructor Summary
AFileStat()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

afile

public AFile afile
The AFile corresponding to this AFileStat.


isDirectory

public boolean isDirectory
True if the file is a directory.


canRead

public boolean canRead
True if the file is readable.


canWrite

public boolean canWrite
True if the file is writable.


length

public long length
The length of the file in bytes.

Constructor Detail

AFileStat

public AFileStat()