file.txt 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. ===================
  2. The ``File`` object
  3. ===================
  4. The :mod:`django.core.files` module and its submodules contain built-in classes
  5. for basic file handling in Django.
  6. .. currentmodule:: django.core.files
  7. The ``File`` class
  8. ==================
  9. .. class:: File(file_object, name=None)
  10. The :class:`File` class is a thin wrapper around a Python
  11. :py:term:`file object` with some Django-specific additions.
  12. Internally, Django uses this class when it needs to represent a file.
  13. :class:`File` objects have the following attributes and methods:
  14. .. attribute:: name
  15. The name of the file including the relative path from
  16. :setting:`MEDIA_ROOT`.
  17. .. attribute:: size
  18. The size of the file in bytes.
  19. .. attribute:: file
  20. The underlying :py:term:`file object` that this class wraps.
  21. .. admonition:: Be careful with this attribute in subclasses.
  22. Some subclasses of :class:`File`, including
  23. :class:`~django.core.files.base.ContentFile` and
  24. :class:`~django.db.models.fields.files.FieldFile`, may replace this
  25. attribute with an object other than a Python :py:term:`file object`.
  26. In these cases, this attribute may itself be a :class:`File`
  27. subclass (and not necessarily the same subclass). Whenever
  28. possible, use the attributes and methods of the subclass itself
  29. rather than the those of the subclass's ``file`` attribute.
  30. .. attribute:: mode
  31. The read/write mode for the file.
  32. .. method:: open(mode=None)
  33. Open or reopen the file (which also does ``File.seek(0)``).
  34. The ``mode`` argument allows the same values
  35. as Python's built-in :func:`python:open()`.
  36. When reopening a file, ``mode`` will override whatever mode the file
  37. was originally opened with; ``None`` means to reopen with the original
  38. mode.
  39. It can be used as a context manager, e.g. ``with file.open() as f:``.
  40. .. method:: __iter__()
  41. Iterate over the file yielding one line at a time.
  42. .. method:: chunks(chunk_size=None)
  43. Iterate over the file yielding "chunks" of a given size. ``chunk_size``
  44. defaults to 64 KB.
  45. This is especially useful with very large files since it allows them to
  46. be streamed off disk and avoids storing the whole file in memory.
  47. .. method:: multiple_chunks(chunk_size=None)
  48. Returns ``True`` if the file is large enough to require multiple chunks
  49. to access all of its content give some ``chunk_size``.
  50. .. method:: close()
  51. Close the file.
  52. In addition to the listed methods, :class:`~django.core.files.File` exposes
  53. the following attributes and methods of its ``file`` object:
  54. ``encoding``, ``fileno``, ``flush``, ``isatty``, ``newlines``, ``read``,
  55. ``readinto``, ``readline``, ``readlines``, ``seek``, ``tell``,
  56. ``truncate``, ``write``, ``writelines``, ``readable()``, ``writable()``,
  57. and ``seekable()``.
  58. .. currentmodule:: django.core.files.base
  59. The ``ContentFile`` class
  60. =========================
  61. .. class:: ContentFile(content, name=None)
  62. The ``ContentFile`` class inherits from :class:`~django.core.files.File`,
  63. but unlike :class:`~django.core.files.File` it operates on string content
  64. (bytes also supported), rather than an actual file. For example::
  65. from django.core.files.base import ContentFile
  66. f1 = ContentFile("esta frase está en español")
  67. f2 = ContentFile(b"these are bytes")
  68. .. currentmodule:: django.core.files.images
  69. The ``ImageFile`` class
  70. =======================
  71. .. class:: ImageFile(file_object, name=None)
  72. Django provides a built-in class specifically for images.
  73. :class:`django.core.files.images.ImageFile` inherits all the attributes
  74. and methods of :class:`~django.core.files.File`, and additionally
  75. provides the following:
  76. .. attribute:: width
  77. Width of the image in pixels.
  78. .. attribute:: height
  79. Height of the image in pixels.
  80. .. currentmodule:: django.core.files
  81. Additional methods on files attached to objects
  82. ===============================================
  83. Any :class:`File` that is associated with an object (as with ``Car.photo``,
  84. below) will also have a couple of extra methods:
  85. .. method:: File.save(name, content, save=True)
  86. Saves a new file with the file name and contents provided. This will not
  87. replace the existing file, but will create a new file and update the object
  88. to point to it. If ``save`` is ``True``, the model's ``save()`` method will
  89. be called once the file is saved. That is, these two lines:
  90. .. code-block:: pycon
  91. >>> car.photo.save("myphoto.jpg", content, save=False)
  92. >>> car.save()
  93. are equivalent to:
  94. .. code-block:: pycon
  95. >>> car.photo.save("myphoto.jpg", content, save=True)
  96. Note that the ``content`` argument must be an instance of either
  97. :class:`File` or of a subclass of :class:`File`, such as
  98. :class:`~django.core.files.base.ContentFile`.
  99. .. method:: File.delete(save=True)
  100. Removes the file from the model instance and deletes the underlying file.
  101. If ``save`` is ``True``, the model's ``save()`` method will be called once
  102. the file is deleted.