Uses of Class
org.refcodes.filesystem.IllegalFileHandleException

  • Uses of IllegalFileHandleException in org.refcodes.filesystem

    Modifier and Type
    Method
    Description
    void
    ChangeRootFileSystemWrapperImpl.deleteFile(FileHandle aFileHandle)
    Deletes a file (handle) from the file system.
    void
    FileSystem.deleteFile(FileHandle aFileHandle)
    Deletes a file (handle) from the file system.
    void
    InMemoryFileSystem.deleteFile(FileHandle aFileHandle)
    Deletes a file (handle) from the file system.
    ChangeRootFileSystemWrapperImpl.fromFile(FileHandle aFromFileHandle)
    An input stream is being provided from which the data of the file (handle) may be read.
    void
    ChangeRootFileSystemWrapperImpl.fromFile(FileHandle aFromFileHandle, File aToFile)
    The data contained in the given file (handle) is written to the provided file.
    void
    ChangeRootFileSystemWrapperImpl.fromFile(FileHandle aFromFileHandle, OutputStream aOutputStream)
    The data contained in the given file (handle) is written to the provided output stream.
    FileSystem.fromFile(FileHandle aFromFileHandle)
    An input stream is being provided from which the data of the file (handle) may be read.
    void
    FileSystem.fromFile(FileHandle aFromFileHandle, File aToFile)
    The data contained in the given file (handle) is written to the provided file.
    void
    FileSystem.fromFile(FileHandle aFromFileHandle, OutputStream aOutputStream)
    The data contained in the given file (handle) is written to the provided output stream.
    InMemoryFileSystem.fromFile(FileHandle aFromFileHandle)
    An input stream is being provided from which the data of the file (handle) may be read.
    void
    InMemoryFileSystem.fromFile(FileHandle aFromFileHandle, File aToFile)
    The data contained in the given file (handle) is written to the provided file.
    void
    InMemoryFileSystem.fromFile(FileHandle aFromFileHandle, OutputStream aOutputStream)
    The data contained in the given file (handle) is written to the provided output stream.
    boolean
    ChangeRootFileSystemWrapperImpl.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    FileSystem.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    InMemoryFileSystem.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    ChangeRootFileSystemWrapperImpl.moveFile(FileHandle aFileHandle, String aNewKey)
    Renames the file (handle), it will be accessible via the provided key.
    FileSystem.moveFile(FileHandle aFileHandle, String aNewKey)
    Renames the file (handle), it will be accessible via the provided key.
    InMemoryFileSystem.moveFile(FileHandle aFileHandle, String aNewKey)
    Renames the file (handle), it will be accessible via the provided key.
    ChangeRootFileSystemWrapperImpl.renameFile(FileHandle aFileHandle, String aNewName)
    Renames the file (handle), the name part of the key will be renamed to the new name.
    FileSystem.renameFile(FileHandle aFileHandle, String aNewName)
    Renames the file (handle), the name part of the key will be renamed to the new name.
    InMemoryFileSystem.renameFile(FileHandle aFileHandle, String aNewName)
    Renames the file (handle), the name part of the key will be renamed to the new name.
    ChangeRootFileSystemWrapperImpl.toFile(FileHandle aToFileHandle)
    Returns an output stream which may be used to write (or append, in case data did already exist for the file system) data to a file (handle).
    void
    ChangeRootFileSystemWrapperImpl.toFile(FileHandle aToFileHandle, byte[] aBuffer)
    Data provided by the given buffer is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    ChangeRootFileSystemWrapperImpl.toFile(FileHandle aToFileHandle, File aFromFile)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    ChangeRootFileSystemWrapperImpl.toFile(FileHandle aToFileHandle, InputStream aInputStream)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    FileSystem.toFile(FileHandle aToFileHandle)
    Returns an output stream which may be used to write (or append, in case data did already exist for the file system) data to a file (handle).
    void
    FileSystem.toFile(FileHandle aToFileHandle, byte[] aBuffer)
    Data provided by the given buffer is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    FileSystem.toFile(FileHandle aToFileHandle, File aFromFile)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    FileSystem.toFile(FileHandle aToFileHandle, InputStream aInputStream)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    InMemoryFileSystem.toFile(FileHandle aToFileHandle)
    Returns an output stream which may be used to write (or append, in case data did already exist for the file system) data to a file (handle).
    void
    InMemoryFileSystem.toFile(FileHandle aToFileHandle, byte[] aBuffer)
    Data provided by the given buffer is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    InMemoryFileSystem.toFile(FileHandle aToFileHandle, File aFromFile)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    InMemoryFileSystem.toFile(FileHandle aToFileHandle, InputStream aInputStream)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    static FileHandle
    FileSystemUtility.toNormalizedFileHandle(FileHandle aFileHandle, FileSystem aFileSystem)
    Test whether the given key may jail break from the name space.