Class FileSystemStorage
Standard filesystem storage
Declaration
@deconstructible
class FileSystemStorage(
Storage)
source linkDocumentation
Methods
▶ def __init__(self, location=None, base_url=None, file_permissions_mode=None, ...) def __init__(
self,
location=None,
base_url=None,
file_permissions_mode=None,
directory_permissions_mode=None,
)
Overrides
This method is overriden in:
@cached_property
def base_location(self)
@cached_property
def base_url(self)
▶ def delete(self, name) overrideinherited doc Delete the specified file from the storage system.
@cached_property
def directory_permissions_mode(self)
▶ def exists(self, name) overrideinherited doc Return True if a file referenced by the given name already exists in the storage system, or False if the name is available for a new file.
@cached_property
def file_permissions_mode(self)
▶ def get_accessed_time(self, name) overrideinherited doc Return the last accessed time (as a datetime) of the file specified by name. The datetime will be timezone-aware if USE_TZ=True.
▶ def get_created_time(self, name) overrideinherited doc Return the creation time (as a datetime) of the file specified by name. The datetime will be timezone-aware if USE_TZ=True.
▶ def get_modified_time(self, name) overrideinherited doc Return the last modified time (as a datetime) of the file specified by name. The datetime will be timezone-aware if USE_TZ=True.
▶ def listdir(self, path) overrideinherited doc List the contents of the specified path. Return a 2-tuple of lists: the first item being directories, the second item being files.
@cached_property
def location(self)
▶ def path(self, name) overrideinherited doc Return a local filesystem path where the file can be retrieved using Python's built-in open() function. Storage systems that can't be accessed using open() should *not* implement this method.
▶ def size(self, name) overrideinherited doc Return the total size, in bytes, of the file specified by name.
▶ def url(self, name) overrideinherited doc Return an absolute URL where the file's contents can be accessed directly by a Web browser.