Interface FileStore

    • Method Detail

      • getInputStream

        java.io.InputStream getInputStream()
        Access the file content as an input stream.
        Returns:
        an input stream to read content
      • getOutputStream

        java.io.OutputStream getOutputStream()
        Access the file content as an output stream.
        Returns:
        an output stream to write content
      • getOutputStream

        java.io.OutputStream getOutputStream​(boolean append)
        Parameters:
        append - if true, open the file OutputStream in append mode, otherwise as new file Access the file content as an output stream.
        Returns:
        an output stream to write content
      • getSize

        long getSize()
        Return the size of the file.
        Returns:
        the file size
      • getLastModified

        long getLastModified()
        Return the date/time that the file was last modified.
        Returns:
        the last modified timestamp