Uses of Class
de.waldheinz.fs.ReadOnlyException

Packages that use ReadOnlyException
de.waldheinz.fs Contains the file-system independent classes and interfaces, as well as the FileSystemFactory for creating FileSystem instances. 
de.waldheinz.fs.fat Contains the classes implementing the FAT(12/16/32) file system. 
 

Uses of ReadOnlyException in de.waldheinz.fs
 

Methods in de.waldheinz.fs that throw ReadOnlyException
protected  void AbstractFileSystem.checkReadOnly()
          Checks if this FileSystem is read-only, and throws an exception if it is.
protected  void AbstractFsObject.checkWritable()
          Convience method to check if this object is writable.
 void FsFile.write(long offset, ByteBuffer src)
          Writes to this file taking the data to write from the specified ByteBuffer.
 void BlockDevice.write(long devOffset, ByteBuffer src)
          Writes a block of data to this device.
 

Uses of ReadOnlyException in de.waldheinz.fs.fat
 

Methods in de.waldheinz.fs.fat that throw ReadOnlyException
 void FatFile.flush()
          Has no effect besides possibly throwing an ReadOnlyException.
 void FatLfnDirectoryEntry.moveTo(FatLfnDirectory target, String newName)
          Moves this entry to a new directory under the specified name.
 void FatLfnDirectoryEntry.setArchiveFlag(boolean archive)
          Sets the "archive" flag on this FatLfnDirectoryEntry to the specified value.
 void FatLfnDirectoryEntry.setHiddenFlag(boolean hidden)
          Sets the "hidden" flag on this FatLfnDirectoryEntry to the specified value.
 void FatFile.setLength(long length)
          Sets the size (in bytes) of this file.
 void FatLfnDirectoryEntry.setReadOnlyFlag(boolean readOnly)
          Sets the "read only" flag on this FatLfnDirectoryEntry to the specified value.
 void FatLfnDirectoryEntry.setSystemFlag(boolean systemEntry)
          Sets the "system" flag on this FatLfnDirectoryEntry to the specified value.
 void FatFileSystem.setVolumeLabel(String label)
          Sets the volume label for this file system.
 void FatFile.write(long offset, ByteBuffer srcBuf)
           Writes to this file taking the data to write from the specified ByteBuffer. If the data to be written extends beyond the current length of this file, an attempt is made to grow the file so that the data will fit.
 



Copyright © 2014. All rights reserved.