2016-01-03 18:56:22 +08:00
|
|
|
===================
|
2008-08-24 06:25:40 +08:00
|
|
|
The ``File`` object
|
|
|
|
===================
|
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
The :mod:`django.core.files` module and its submodules contain built-in classes
|
|
|
|
for basic file handling in Django.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
.. currentmodule:: django.core.files
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2016-01-25 05:26:11 +08:00
|
|
|
The ``File`` class
|
2016-01-03 18:56:22 +08:00
|
|
|
==================
|
2010-10-24 17:12:40 +08:00
|
|
|
|
2021-04-15 23:42:06 +08:00
|
|
|
.. class:: File(file_object, name=None)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2014-04-26 22:00:15 +08:00
|
|
|
The :class:`File` class is a thin wrapper around a Python
|
|
|
|
:py:term:`file object` with some Django-specific additions.
|
2013-08-30 00:48:22 +08:00
|
|
|
Internally, Django uses this class when it needs to represent a file.
|
2013-01-01 21:12:42 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
:class:`File` objects have the following attributes and methods:
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
.. attribute:: name
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2013-08-30 00:48:22 +08:00
|
|
|
The name of the file including the relative path from
|
2010-12-05 15:35:10 +08:00
|
|
|
:setting:`MEDIA_ROOT`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
.. attribute:: size
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
The size of the file in bytes.
|
2010-11-29 04:14:04 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
.. attribute:: file
|
2010-10-24 17:12:40 +08:00
|
|
|
|
2014-04-26 22:00:15 +08:00
|
|
|
The underlying :py:term:`file object` that this class wraps.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2016-04-28 02:45:22 +08:00
|
|
|
.. admonition:: Be careful with this attribute in subclasses.
|
|
|
|
|
|
|
|
Some subclasses of :class:`File`, including
|
|
|
|
:class:`~django.core.files.base.ContentFile` and
|
|
|
|
:class:`~django.db.models.fields.files.FieldFile`, may replace this
|
|
|
|
attribute with an object other than a Python :py:term:`file object`.
|
|
|
|
In these cases, this attribute may itself be a :class:`File`
|
|
|
|
subclass (and not necessarily the same subclass). Whenever
|
|
|
|
possible, use the attributes and methods of the subclass itself
|
|
|
|
rather than the those of the subclass's ``file`` attribute.
|
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
.. attribute:: mode
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
The read/write mode for the file.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. method:: open(mode=None)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2013-08-30 00:48:22 +08:00
|
|
|
Open or reopen the file (which also does ``File.seek(0)``).
|
|
|
|
The ``mode`` argument allows the same values
|
|
|
|
as Python's built-in :func:`python:open()`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
When reopening a file, ``mode`` will override whatever mode the file
|
|
|
|
was originally opened with; ``None`` means to reopen with the original
|
|
|
|
mode.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2017-04-07 21:41:39 +08:00
|
|
|
It can be used as a context manager, e.g. ``with file.open() as f:``.
|
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
.. method:: __iter__()
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
Iterate over the file yielding one line at a time.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. method:: chunks(chunk_size=None)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
Iterate over the file yielding "chunks" of a given size. ``chunk_size``
|
|
|
|
defaults to 64 KB.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
This is especially useful with very large files since it allows them to
|
|
|
|
be streamed off disk and avoids storing the whole file in memory.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. method:: multiple_chunks(chunk_size=None)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
Returns ``True`` if the file is large enough to require multiple chunks
|
|
|
|
to access all of its content give some ``chunk_size``.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
.. method:: close()
|
2008-09-03 01:33:51 +08:00
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
Close the file.
|
2008-09-03 01:33:51 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
In addition to the listed methods, :class:`~django.core.files.File` exposes
|
2013-08-30 00:48:22 +08:00
|
|
|
the following attributes and methods of its ``file`` object:
|
2017-04-20 02:48:01 +08:00
|
|
|
``encoding``, ``fileno``, ``flush``, ``isatty``, ``newlines``, ``read``,
|
2017-04-27 02:44:07 +08:00
|
|
|
``readinto``, ``readline``, ``readlines``, ``seek``, ``tell``,
|
|
|
|
``truncate``, ``write``, ``writelines``, ``readable()``, ``writable()``,
|
|
|
|
and ``seekable()``.
|
2016-05-23 00:43:56 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
.. currentmodule:: django.core.files.base
|
|
|
|
|
2016-01-25 05:26:11 +08:00
|
|
|
The ``ContentFile`` class
|
2016-01-03 18:56:22 +08:00
|
|
|
=========================
|
2010-12-05 15:35:10 +08:00
|
|
|
|
2021-04-15 23:42:06 +08:00
|
|
|
.. class:: ContentFile(content, name=None)
|
2010-12-05 15:35:10 +08:00
|
|
|
|
|
|
|
The ``ContentFile`` class inherits from :class:`~django.core.files.File`,
|
2012-08-29 15:45:02 +08:00
|
|
|
but unlike :class:`~django.core.files.File` it operates on string content
|
|
|
|
(bytes also supported), rather than an actual file. For example::
|
2010-12-05 15:35:10 +08:00
|
|
|
|
|
|
|
from django.core.files.base import ContentFile
|
|
|
|
|
2018-07-08 05:20:02 +08:00
|
|
|
f1 = ContentFile("esta frase está en español")
|
2012-08-29 15:45:02 +08:00
|
|
|
f2 = ContentFile(b"these are bytes")
|
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
.. currentmodule:: django.core.files.images
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2016-01-25 05:26:11 +08:00
|
|
|
The ``ImageFile`` class
|
2016-01-03 18:56:22 +08:00
|
|
|
=======================
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2021-04-15 23:42:06 +08:00
|
|
|
.. class:: ImageFile(file_object, name=None)
|
2010-10-24 17:12:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
Django provides a built-in class specifically for images.
|
|
|
|
:class:`django.core.files.images.ImageFile` inherits all the attributes
|
|
|
|
and methods of :class:`~django.core.files.File`, and additionally
|
|
|
|
provides the following:
|
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
.. attribute:: width
|
2010-11-29 04:14:04 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
Width of the image in pixels.
|
2008-09-03 01:33:51 +08:00
|
|
|
|
2010-10-24 17:12:40 +08:00
|
|
|
.. attribute:: height
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
Height of the image in pixels.
|
2010-10-24 17:12:40 +08:00
|
|
|
|
|
|
|
.. currentmodule:: django.core.files
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Additional methods on files attached to objects
|
2016-01-03 18:56:22 +08:00
|
|
|
===============================================
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2013-08-30 00:48:22 +08:00
|
|
|
Any :class:`File` that is associated with an object (as with ``Car.photo``,
|
2010-12-05 15:35:10 +08:00
|
|
|
below) will also have a couple of extra methods:
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. method:: File.save(name, content, save=True)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2008-09-03 01:33:51 +08:00
|
|
|
Saves a new file with the file name and contents provided. This will not
|
|
|
|
replace the existing file, but will create a new file and update the object
|
|
|
|
to point to it. If ``save`` is ``True``, the model's ``save()`` method will
|
|
|
|
be called once the file is saved. That is, these two lines::
|
2010-11-29 04:14:04 +08:00
|
|
|
|
2011-09-28 10:26:12 +08:00
|
|
|
>>> car.photo.save('myphoto.jpg', content, save=False)
|
2008-09-03 01:33:51 +08:00
|
|
|
>>> car.save()
|
2010-11-29 04:14:04 +08:00
|
|
|
|
2013-08-30 00:48:22 +08:00
|
|
|
are equivalent to::
|
2010-11-29 04:14:04 +08:00
|
|
|
|
2011-09-28 10:26:12 +08:00
|
|
|
>>> car.photo.save('myphoto.jpg', content, save=True)
|
2010-11-29 04:14:04 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
Note that the ``content`` argument must be an instance of either
|
|
|
|
:class:`File` or of a subclass of :class:`File`, such as
|
2013-01-01 21:12:42 +08:00
|
|
|
:class:`~django.core.files.base.ContentFile`.
|
2008-08-31 18:37:44 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. method:: File.delete(save=True)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-12-05 15:35:10 +08:00
|
|
|
Removes the file from the model instance and deletes the underlying file.
|
|
|
|
If ``save`` is ``True``, the model's ``save()`` method will be called once
|
|
|
|
the file is deleted.
|