Sfoglia il codice sorgente

Fixed #32315 -- Doc'd FieldFile.path.

Hasan Ramezani 4 anni fa
parent
commit
3eb98743dc
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6 0
      docs/ref/models/fields.txt

+ 6 - 0
docs/ref/models/fields.txt

@@ -945,6 +945,12 @@ The name of the file including the relative path from the root of the
 :class:`~django.core.files.storage.Storage` of the associated
 :class:`~django.db.models.FileField`.
 
+.. attribute:: FieldFile.path
+
+A read-only property to access the file's local filesystem path by calling the
+:meth:`~django.core.files.storage.Storage.path` method of the underlying
+:class:`~django.core.files.storage.Storage` class.
+
 .. attribute:: FieldFile.size
 
 The result of the underlying :attr:`Storage.size()