mirror of https://github.com/django/django.git
Moved FileSystemStorage note in docs to the correct place.
This commit is contained in:
parent
604e32ee93
commit
d4f6e6c088
|
@ -35,6 +35,11 @@ The ``FileSystemStorage`` class
|
|||
:class:`~django.core.files.storage.Storage` and provides implementations
|
||||
for all the public methods thereof.
|
||||
|
||||
.. note::
|
||||
|
||||
The ``FileSystemStorage.delete()`` method will not raise an exception
|
||||
if the given file name does not exist.
|
||||
|
||||
.. attribute:: location
|
||||
|
||||
Absolute path to the directory that will hold the files.
|
||||
|
@ -55,11 +60,6 @@ The ``FileSystemStorage`` class
|
|||
The file system permissions that the directory will receive when it is
|
||||
saved. Defaults to :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS`.
|
||||
|
||||
.. note::
|
||||
|
||||
The ``FileSystemStorage.delete()`` method will not raise
|
||||
an exception if the given file name does not exist.
|
||||
|
||||
.. method:: get_created_time(name)
|
||||
|
||||
Returns a :class:`~datetime.datetime` of the system's ctime, i.e.
|
||||
|
|
Loading…
Reference in New Issue