File storage API¶
Getting the current storage class¶
Django provides two convenient ways to access the current storage class:
-
class
DefaultStorage[código fonte]¶ DefaultStorageprovides lazy access to the current default storage system as defined byDEFAULT_FILE_STORAGE.DefaultStorageusesget_storage_class()internally.
-
get_storage_class(import_path=None)[código fonte]¶ Returns a class or module which implements the storage API.
When called without the
import_pathparameterget_storage_classwill return the current default storage system as defined byDEFAULT_FILE_STORAGE. Ifimport_pathis provided,get_storage_classwill attempt to import the class or module from the given path and will return it if successful. An exception will be raised if the import is unsuccessful.
The FileSystemStorage class¶
-
class
FileSystemStorage(location=None, base_url=None, file_permissions_mode=None, directory_permissions_mode=None)[código fonte]¶ The
FileSystemStorageclass implements basic file storage on a local filesystem. It inherits fromStorageand provides implementations for all the public methods thereof.-
location¶ Absolute path to the directory that will hold the files. Defaults to the value of your
MEDIA_ROOTsetting.
-
base_url¶ URL that serves the files stored at this location. Defaults to the value of your
MEDIA_URLsetting.
-
file_permissions_mode¶ The file system permissions that the file will receive when it is saved. Defaults to
FILE_UPLOAD_PERMISSIONS.
-
directory_permissions_mode¶ The file system permissions that the directory will receive when it is saved. Defaults to
FILE_UPLOAD_DIRECTORY_PERMISSIONS.
Nota
The
FileSystemStorage.delete()method will not raise an exception if the given file name does not exist.-
get_created_time(name)[código fonte]¶ Returns a
datetimeof the system’s ctime, i.e.os.path.getctime(). On some systems (like Unix), this is the time of the last metadata change, and on others (like Windows), it’s the creation time of the file.
-
The Storage class¶
-
class
Storage[código fonte]¶ The
Storageclass 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.Nota
When methods return naive
datetimeobjects, the effective timezone used will be the current value ofos.environ['TZ']; note that this is usually set from Django’sTIME_ZONE.-
accessed_time(name)[código fonte]¶ Returns a naive
datetimeobject containing the last accessed time of the file. For storage systems that aren’t able to return the last accessed time this will raiseNotImplementedErrorinstead.Obsoleto desde a versão 1.10: Use
get_accessed_time()instead.
-
created_time(name)[código fonte]¶ Returns a naive
datetimeobject containing the creation time of the file. For storage systems that aren’t able to return the creation time this will raiseNotImplementedErrorinstead.Obsoleto desde a versão 1.10: Use
get_created_time()instead.
-
delete(name)[código fonte]¶ Deletes the file referenced by
name. If deletion is not supported on the target storage system this will raiseNotImplementedErrorinstead
-
exists(name)[código fonte]¶ Returns
Trueif a file referenced by the given name already exists in the storage system, orFalseif the name is available for a new file.
-
get_accessed_time(name)[código fonte]¶ - New in Django 1.10.
Returns a
datetimeof the last accessed time of the file. For storage systems unable to return the last accessed time this will raiseNotImplementedError.If
USE_TZisTrue, returns an awaredatetime, otherwise returns a naivedatetimein the local timezone.
-
get_available_name(name, max_length=None)[código fonte]¶ Returns a filename based on the
nameparameter 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, aSuspiciousFileOperationexception will be raised.Se um arquivo com um
namejá existe, um “underscore” mais uma seqüência alfanumérica de 7 caracteres aleatórios são anexados ao nome do arquivo antes da extensão.
-
get_created_time(name)[código fonte]¶ - New in Django 1.10.
Returns a
datetimeof the creation time of the file. For storage systems unable to return the creation time this will raiseNotImplementedError.If
USE_TZisTrue, returns an awaredatetime, otherwise returns a naivedatetimein the local timezone.
-
get_modified_time(name)[código fonte]¶ - New in Django 1.10.
Returns a
datetimeof the last modified time of the file. For storage systems unable to return the last modified time this will raiseNotImplementedError.If
USE_TZisTrue, returns an awaredatetime, otherwise returns a naivedatetimein the local timezone.
-
get_valid_name(name)[código fonte]¶ Returns a filename based on the
nameparameter that’s suitable for use on the target storage system.
-
generate_filename(filename)[código fonte]¶ - New in Django 1.10.
Validates the
filenameby callingget_valid_name()and returns a filename to be passed to thesave()method.The
filenameargument 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.pathoperations. Override this method if that’s not appropriate for your storage.
-
listdir(path)[código fonte]¶ 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
NotImplementedErrorinstead.
-
modified_time(name)[código fonte]¶ Returns a naive
datetimeobject containing the last modified time. For storage systems that aren’t able to return the last modified time, this will raiseNotImplementedErrorinstead.Obsoleto desde a versão 1.10: Use
get_modified_time()instead.
-
open(name, mode='rb')[código fonte]¶ Opens the file given by
name. Note that although the returned file is guaranteed to be aFileobject, 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)[código fonte]¶ 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 raiseNotImplementedErrorinstead.
-
save(name, content, max_length=None)[código fonte]¶ 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_lengthargument is passed along toget_available_name().The
contentargument must be an instance ofdjango.core.files.Fileor a file-like object that can be wrapped inFile.
-
size(name)[código fonte]¶ 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 raiseNotImplementedErrorinstead.
-
url(name)[código fonte]¶ Returns the URL where the contents of the file referenced by
namecan be accessed. For storage systems that don’t support access by URL this will raiseNotImplementedErrorinstead.
-