storage.txt 7.7 KB

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