class Storage
[source]
The Storage
class provides a standardized API for storing files, along with a set of default behaviors that all other storage systems can inherit or override as necessary.
Note
When methods return naive datetime
objects, the effective timezone used will be the current value of os.environ['TZ']
; note that this is usually set from Django’s TIME_ZONE
.
-
accessed_time(name)
[source] -
Returns a naive
datetime
object containing the last accessed time of the file. For storage systems that aren’t able to return the last accessed time this will raiseNotImplementedError
instead.Deprecated since version 1.10: Use
get_accessed_time()
instead.
-
created_time(name)
[source] -
Returns a naive
datetime
object containing the creation time of the file. For storage systems that aren’t able to return the creation time this will raiseNotImplementedError
instead.Deprecated since version 1.10: Use
get_created_time()
instead.
-
delete(name)
[source] -
Deletes the file referenced by
name
. If deletion is not supported on the target storage system this will raiseNotImplementedError
instead
-
exists(name)
[source] -
Returns
True
if a file referenced by the given name already exists in the storage system, orFalse
if the name is available for a new file.
-
get_accessed_time(name)
[source] -
New in Django 1.10.
Returns a
datetime
of the last accessed time of the file. For storage systems unable to return the last accessed time this will raiseNotImplementedError
.If
USE_TZ
isTrue
, returns an awaredatetime
, otherwise returns a naivedatetime
in the local timezone.
-
get_available_name(name, max_length=None)
[source] -
Returns a filename based on the
name
parameter that’s free and available for new content to be written to on the target storage system.The length of the filename will not exceed
max_length
, if provided. If a free unique filename cannot be found, aSuspiciousFileOperation
exception will be raised.If a file with
name
already exists, an underscore plus a random 7 character alphanumeric string is appended to the filename before the extension.
-
get_created_time(name)
[source] -
New in Django 1.10.
Returns a
datetime
of the creation time of the file. For storage systems unable to return the creation time this will raiseNotImplementedError
.If
USE_TZ
isTrue
, returns an awaredatetime
, otherwise returns a naivedatetime
in the local timezone.
-
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 raiseNotImplementedError
.If
USE_TZ
isTrue
, returns an awaredatetime
, otherwise returns a naivedatetime
in the local timezone.
-
get_valid_name(name)
[source] -
Returns a filename based on the
name
parameter that’s suitable for use on the target storage system.
-
generate_filename(filename)
[source] -
New in Django 1.10.
Validates the
filename
by callingget_valid_name()
and returns a filename to be passed to thesave()
method.The
filename
argument may include a path as returned byFileField.upload_to
. In that case, the path won’t be passed toget_valid_name()
but will be prepended back to the resulting name.The default implementation uses
os.path
operations. Override this method if that’s not appropriate for your storage.
-
listdir(path)
[source] -
Lists the contents of the specified path, returning a 2-tuple of lists; the first item being directories, the second item being files. For storage systems that aren’t able to provide such a listing, this will raise a
NotImplementedError
instead.
-
modified_time(name)
[source] -
Returns a naive
datetime
object containing the last modified time. For storage systems that aren’t able to return the last modified time, this will raiseNotImplementedError
instead.Deprecated since version 1.10: Use
get_modified_time()
instead.
-
open(name, mode='rb')
[source] -
Opens the file given by
name
. Note that although the returned file is guaranteed to be aFile
object, it might actually be some subclass. In the case of remote file storage this means that reading/writing could be quite slow, so be warned.
-
path(name)
[source] -
The local filesystem path where the file can be opened using Python’s standard
open()
. For storage systems that aren’t accessible from the local filesystem, this will raiseNotImplementedError
instead.
-
save(name, content, max_length=None)
[source] -
Saves a new file using the storage system, preferably with the name specified. If there already exists a file with this name
name
, the storage system may modify the filename as necessary to get a unique name. The actual name of the stored file will be returned.The
max_length
argument is passed along toget_available_name()
.The
content
argument must be an instance ofdjango.core.files.File
or a file-like object that can be wrapped inFile
.
-
size(name)
[source] -
Returns the total size, in bytes, of the file referenced by
name
. For storage systems that aren’t able to return the file size this will raiseNotImplementedError
instead.
-
url(name)
[source] -
Returns the URL where the contents of the file referenced by
name
can be accessed. For storage systems that don’t support access by URL this will raiseNotImplementedError
instead.
Please login to continue.