Class FileDescriptor

The descriptor for the file attribute on the model instance. Return a FieldFile when accessed so you can write code like::

Declaration

class FileDescriptor(DeferredAttribute)
source link

Documentation

>>> from myapp.models import MyModel
    >>> instance = MyModel.objects.get(pk=1)
    >>> instance.file.size

Assign a file object on assignment so you can do::

    >>> with open('/path/to/hello.world') as f:
    ...     instance.file = File(f)

Methods

Inherited methods

Subclasses