Python - bucket.files()
Get a list of file references for files that exist on the bucket.
from nitric.resources import bucketfrom nitric.application import Nitricassets = bucket('assets').allow('read')files = await assets.files()Nitric.run()
Earlier versions of the Nitric SDK used 'reading'. The latest version uses 'read'.
Examples
Deleting all files in a bucket
from nitric.resources import bucketfrom nitric.application import Nitricassets = bucket('assets').allow('read', 'delete')files = await assets.files()for f in files:await f.delete()Nitric.run()
Earlier versions of the Nitric SDK used 'reading' and 'deleting'. The latest version uses 'read' and 'delete'.
Notes
This method returns a list of File references that exist on the bucket.
Last updated on Nov 4, 2024