storage.txt 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. .. method:: accessed_time(name)
  57. Returns a ``datetime`` object containing the last accessed time of the
  58. file. For storage systems that aren't able to return the last accessed
  59. time this will raise ``NotImplementedError`` instead.
  60. .. method:: created_time(name)
  61. Returns a ``datetime`` object containing the creation time of the file.
  62. For storage systems that aren't able to return the creation time this
  63. will raise ``NotImplementedError`` instead.
  64. .. method:: delete(name)
  65. Deletes the file referenced by ``name``. If deletion is not supported
  66. on the target storage system this will raise ``NotImplementedError``
  67. instead
  68. .. method:: exists(name)
  69. Returns ``True`` if a file referenced by the given name already exists
  70. in the storage system, or ``False`` if the name is available for a new
  71. file.
  72. .. method:: get_available_name(name)
  73. Returns a filename based on the ``name`` parameter that's free and
  74. available for new content to be written to on the target storage
  75. system.
  76. .. versionchanged:: 1.7
  77. If a file with ``name`` already exists, an underscore plus a random 7
  78. character alphanumeric string is appended to the filename before the
  79. extension.
  80. Previously, an underscore followed by a number (e.g. ``"_1"``, ``"_2"``,
  81. etc.) was appended to the filename until an avaible name in the
  82. destination directory was found. A malicious user could exploit this
  83. deterministic algorithm to create a denial-of-service attack. This
  84. change was also made in Django 1.6.6, 1.5.9, and 1.4.14.
  85. .. method:: get_valid_name(name)
  86. Returns a filename based on the ``name`` parameter that's suitable
  87. for use on the target storage system.
  88. .. method:: listdir(path)
  89. Lists the contents of the specified path, returning a 2-tuple of lists;
  90. the first item being directories, the second item being files. For
  91. storage systems that aren't able to provide such a listing, this will
  92. raise a ``NotImplementedError`` instead.
  93. .. method:: modified_time(name)
  94. Returns a ``datetime`` object containing the last modified time. For
  95. storage systems that aren't able to return the last modified time, this
  96. will raise ``NotImplementedError`` instead.
  97. .. method:: open(name, mode='rb')
  98. Opens the file given by ``name``. Note that although the returned file
  99. is guaranteed to be a ``File`` object, it might actually be some
  100. subclass. In the case of remote file storage this means that
  101. reading/writing could be quite slow, so be warned.
  102. .. method:: path(name)
  103. The local filesystem path where the file can be opened using Python's
  104. standard ``open()``. For storage systems that aren't accessible from
  105. the local filesystem, this will raise ``NotImplementedError`` instead.
  106. .. method:: save(name, content)
  107. Saves a new file using the storage system, preferably with the name
  108. specified. If there already exists a file with this name ``name``, the
  109. storage system may modify the filename as necessary to get a unique
  110. name. The actual name of the stored file will be returned.
  111. The ``content`` argument must be an instance of
  112. :class:`django.core.files.File` or of a subclass of
  113. :class:`~django.core.files.File`.
  114. .. method:: size(name)
  115. Returns the total size, in bytes, of the file referenced by ``name``.
  116. For storage systems that aren't able to return the file size this will
  117. raise ``NotImplementedError`` instead.
  118. .. method:: url(name)
  119. Returns the URL where the contents of the file referenced by ``name``
  120. can be accessed. For storage systems that don't support access by URL
  121. this will raise ``NotImplementedError`` instead.