storage.txt 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. ================
  2. File storage API
  3. ================
  4. .. module:: django.core.files.storage
  5. Getting the default storage class
  6. =================================
  7. Django provides convenient ways to access the default storage class:
  8. .. class:: DefaultStorage
  9. :class:`~django.core.files.storage.DefaultStorage` provides
  10. lazy access to the current default storage system as defined by
  11. :setting:`DEFAULT_FILE_STORAGE`. :class:`DefaultStorage` uses
  12. :func:`~django.core.files.storage.get_storage_class` internally.
  13. .. data:: default_storage
  14. :data:`~django.core.files.storage.default_storage` is an instance of the
  15. :class:`~django.core.files.storage.DefaultStorage`.
  16. .. function:: get_storage_class(import_path=None)
  17. Returns a class or module which implements the storage API.
  18. When called without the ``import_path`` parameter ``get_storage_class``
  19. will return the current default storage system as defined by
  20. :setting:`DEFAULT_FILE_STORAGE`. If ``import_path`` is provided,
  21. ``get_storage_class`` will attempt to import the class or module from the
  22. given path and will return it if successful. An exception will be
  23. raised if the import is unsuccessful.
  24. The ``FileSystemStorage`` class
  25. ===============================
  26. .. class:: FileSystemStorage(location=None, base_url=None, file_permissions_mode=None, directory_permissions_mode=None)
  27. The :class:`~django.core.files.storage.FileSystemStorage` class implements
  28. basic file storage on a local filesystem. It inherits from
  29. :class:`~django.core.files.storage.Storage` and provides implementations
  30. for all the public methods thereof.
  31. .. attribute:: location
  32. Absolute path to the directory that will hold the files.
  33. Defaults to the value of your :setting:`MEDIA_ROOT` setting.
  34. .. attribute:: base_url
  35. URL that serves the files stored at this location.
  36. Defaults to the value of your :setting:`MEDIA_URL` setting.
  37. .. attribute:: file_permissions_mode
  38. The file system permissions that the file will receive when it is
  39. saved. Defaults to :setting:`FILE_UPLOAD_PERMISSIONS`.
  40. .. attribute:: directory_permissions_mode
  41. The file system permissions that the directory will receive when it is
  42. saved. Defaults to :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS`.
  43. .. note::
  44. The ``FileSystemStorage.delete()`` method will not raise
  45. an exception if the given file name does not exist.
  46. .. method:: get_created_time(name)
  47. Returns a :class:`~datetime.datetime` of the system's ctime, i.e.
  48. :func:`os.path.getctime`. On some systems (like Unix), this is the
  49. time of the last metadata change, and on others (like Windows), it's
  50. the creation time of the file.
  51. The ``Storage`` class
  52. =====================
  53. .. class:: Storage
  54. The :class:`~django.core.files.storage.Storage` class provides a
  55. standardized API for storing files, along with a set of default
  56. behaviors that all other storage systems can inherit or override
  57. as necessary.
  58. .. note::
  59. When methods return naive ``datetime`` objects, the effective timezone
  60. used will be the current value of ``os.environ['TZ']``; note that this
  61. is usually set from Django's :setting:`TIME_ZONE`.
  62. .. method:: delete(name)
  63. Deletes the file referenced by ``name``. If deletion is not supported
  64. on the target storage system this will raise ``NotImplementedError``
  65. instead.
  66. .. method:: exists(name)
  67. Returns ``True`` if a file referenced by the given name already exists
  68. in the storage system, or ``False`` if the name is available for a new
  69. file.
  70. .. method:: get_accessed_time(name)
  71. Returns a :class:`~datetime.datetime` of the last accessed time of the
  72. file. For storage systems unable to return the last accessed time this
  73. will raise :exc:`NotImplementedError`.
  74. If :setting:`USE_TZ` is ``True``, returns an aware ``datetime``,
  75. otherwise returns a naive ``datetime`` in the local timezone.
  76. .. method:: get_alternative_name(file_root, file_ext)
  77. Returns an alternative filename based on the ``file_root`` and
  78. ``file_ext`` parameters, an underscore plus a random 7 character
  79. alphanumeric string is appended to the filename before the extension.
  80. .. method:: get_available_name(name, max_length=None)
  81. Returns a filename based on the ``name`` parameter that's free and
  82. available for new content to be written to on the target storage
  83. system.
  84. The length of the filename will not exceed ``max_length``, if provided.
  85. If a free unique filename cannot be found, a
  86. :exc:`SuspiciousFileOperation
  87. <django.core.exceptions.SuspiciousOperation>` exception will be raised.
  88. If a file with ``name`` already exists, :meth:`get_alternative_name` is
  89. called to obtain an alternative name.
  90. .. method:: get_created_time(name)
  91. Returns a :class:`~datetime.datetime` of the creation time of the file.
  92. For storage systems unable to return the creation time this will raise
  93. :exc:`NotImplementedError`.
  94. If :setting:`USE_TZ` is ``True``, returns an aware ``datetime``,
  95. otherwise returns a naive ``datetime`` in the local timezone.
  96. .. method:: get_modified_time(name)
  97. Returns a :class:`~datetime.datetime` of the last modified time of the
  98. file. For storage systems unable to return the last modified time this
  99. will raise :exc:`NotImplementedError`.
  100. If :setting:`USE_TZ` is ``True``, returns an aware ``datetime``,
  101. otherwise returns a naive ``datetime`` in the local timezone.
  102. .. method:: get_valid_name(name)
  103. Returns a filename based on the ``name`` parameter that's suitable
  104. for use on the target storage system.
  105. .. method:: generate_filename(filename)
  106. Validates the ``filename`` by calling :attr:`get_valid_name()` and
  107. returns a filename to be passed to the :meth:`save` method.
  108. The ``filename`` argument may include a path as returned by
  109. :attr:`FileField.upload_to <django.db.models.FileField.upload_to>`.
  110. In that case, the path won't be passed to :attr:`get_valid_name()` but
  111. will be prepended back to the resulting name.
  112. The default implementation uses :mod:`os.path` operations. Override
  113. this method if that's not appropriate for your storage.
  114. .. method:: listdir(path)
  115. Lists the contents of the specified path, returning a 2-tuple of lists;
  116. the first item being directories, the second item being files. For
  117. storage systems that aren't able to provide such a listing, this will
  118. raise a ``NotImplementedError`` instead.
  119. .. method:: open(name, mode='rb')
  120. Opens the file given by ``name``. Note that although the returned file
  121. is guaranteed to be a ``File`` object, it might actually be some
  122. subclass. In the case of remote file storage this means that
  123. reading/writing could be quite slow, so be warned.
  124. .. method:: path(name)
  125. The local filesystem path where the file can be opened using Python's
  126. standard ``open()``. For storage systems that aren't accessible from
  127. the local filesystem, this will raise ``NotImplementedError`` instead.
  128. .. method:: save(name, content, max_length=None)
  129. Saves a new file using the storage system, preferably with the name
  130. specified. If there already exists a file with this name ``name``, the
  131. storage system may modify the filename as necessary to get a unique
  132. name. The actual name of the stored file will be returned.
  133. The ``max_length`` argument is passed along to
  134. :meth:`get_available_name`.
  135. The ``content`` argument must be an instance of
  136. :class:`django.core.files.File` or a file-like object that can be
  137. wrapped in ``File``.
  138. .. method:: size(name)
  139. Returns the total size, in bytes, of the file referenced by ``name``.
  140. For storage systems that aren't able to return the file size this will
  141. raise ``NotImplementedError`` instead.
  142. .. method:: url(name)
  143. Returns the URL where the contents of the file referenced by ``name``
  144. can be accessed. For storage systems that don't support access by URL
  145. this will raise ``NotImplementedError`` instead.