Class StaticFilesStorage
Standard file system storage for static files.
Declaration
source linkDocumentation
The defaults for ``location`` and ``base_url`` are
``STATIC_ROOT`` and ``STATIC_URL``.
Methods
▶ def __init__(self, location=None, base_url=None, *args, **kwargs) override ▶ 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.