get_modified_time(name)
[source]
New in Django 1.10.
Returns a datetime
of the last modified time of the file. For storage systems unable to return the last modified time this will raise NotImplementedError
.
If USE_TZ
is True
, returns an aware datetime
, otherwise returns a naive datetime
in the local timezone.
Please login to continue.