.. _ref-filestore: .. module:: trytond.filestore FileStore ========= .. class:: FileStore() Store and retrieve files from the directory defined in the configuration ``path`` of ``database`` section. It uses a two levels of directory composed of the 2 chars of the file hash. It is an append only storage. .. method:: FileStore.get(id[, prefix]) Retrieve the content of the file referred by the id in the prefixed directory. .. method:: FileStore.getmany(ids[, prefix]) Retrieve a list of contents for the sequence of ids. .. method:: FileStore.size(id[, prefix]) Return the size of the file referred by the id in the prefixed directory. .. method:: FileStore.sizemany(ids[, prefix]) Return a list of sizes for the sequence of ids. .. method:: FileStore.set(data[, prefix]) Store the data in the prefixed directory and return the identifiers. .. method:: FileStore.setmany(data[, prefix]) Store the sequence of data and return a list of identifiers. .. note:: The class can be overridden by setting a fully qualified name of a alternative class defined in the configuration ``class`` of the ``database`` section.