Uses of Class
org.refcodes.filesystem.NoListAccessException

  • Uses of NoListAccessException in org.refcodes.filesystem

    Modifier and Type
    Method
    Description
    ChangeRootFileSystemWrapperImpl.createFile(String aKey)
    Creates a file (handle) with the given key.
    ChangeRootFileSystemWrapperImpl.createFile(String aPath, String aName)
    Creates a file (handle) with the given path and name.
    FileSystem.createFile(String aKey)
    Creates a file (handle) with the given key.
    FileSystem.createFile(String aPath, String aName)
    Creates a file (handle) with the given path and name.
    InMemoryFileSystem.createFile(String aKey)
    Creates a file (handle) with the given key.
    InMemoryFileSystem.createFile(String aPath, String aName)
    Creates a file (handle) with the given path and name.
    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.
    ChangeRootFileSystemWrapperImpl.getFileHandle(String aKey)
    Gets a file (handle) with the given key from the file system.
    ChangeRootFileSystemWrapperImpl.getFileHandle(String aPath, String aName)
    Gets a file (handle) with the given path and name from the file system.
    FileSystem.getFileHandle(String aKey)
    Gets a file (handle) with the given key from the file system.
    FileSystem.getFileHandle(String aPath, String aName)
    Gets a file (handle) with the given path and name from the file system.
    InMemoryFileSystem.getFileHandle(String aKey)
    Gets a file (handle) with the given key from the file system.
    InMemoryFileSystem.getFileHandle(String aPath, String aName)
    Gets a file (handle) with the given path and name from the file system.
    ChangeRootFileSystemWrapperImpl.getFileHandles(String aPath, boolean isRecursively)
    With the behavior of the FileSystem.hasFiles(String, boolean) method, all file (handle)s found for the path are returned.
    FileSystem.getFileHandles(String aPath, boolean isRecursively)
    With the behavior of the FileSystem.hasFiles(String, boolean) method, all file (handle)s found for the path are returned.
    InMemoryFileSystem.getFileHandles(String aPath, boolean isRecursively)
    With the behavior of the FileSystem.hasFiles(String, boolean) method, all file (handle)s found for the path are returned.
    boolean
    ChangeRootFileSystemWrapperImpl.hasFile(String aKey)
    Tests whether the file system knows a file (handle) with the given key.
    boolean
    ChangeRootFileSystemWrapperImpl.hasFile(String aPath, String aName)
    Tests whether the file system knows a file (handle) with the given path and name.
    boolean
    ChangeRootFileSystemWrapperImpl.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    FileSystem.hasFile(String aKey)
    Tests whether the file system knows a file (handle) with the given key.
    boolean
    FileSystem.hasFile(String aPath, String aName)
    Tests whether the file system knows a file (handle) with the given path and name.
    boolean
    FileSystem.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    InMemoryFileSystem.hasFile(String aKey)
    Tests whether the file system knows a file (handle) with the given key.
    boolean
    InMemoryFileSystem.hasFile(String aPath, String aName)
    Tests whether the file system knows a file (handle) with the given path and name.
    boolean
    InMemoryFileSystem.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    ChangeRootFileSystemWrapperImpl.hasFiles(String aPath, boolean isRecursively)
    Determines whether there is any file (handle)s found for the given path.
    boolean
    FileSystem.hasFiles(String aPath, boolean isRecursively)
    Determines whether there is any file (handle)s found for the given path.
    boolean
    InMemoryFileSystem.hasFiles(String aPath, boolean isRecursively)
    Determines whether there is any file (handle)s found for the given path.
    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.
    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).
    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).
    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).