The C# .NET SDK currently only supports legacy versions of Nitric prior to v1. This version is maintained for compatibility with existing projects and not recommended for new projects. New projects should be started using a supported SDK (presented automatically using the `nitric new` command) orget in touch to request an update to the latest version.
.NET - Bucket.Files()
Get a list of file references for files that exist in the bucket.
using Nitric.Sdk;
using Nitric.Sdk.Storage;
var assets = Nitric.Bucket("assets").With(BucketPermission.Reading);
var files = assets.Files();
Nitric.Run();
Examples
Deleting all files in a bucket
using Nitric.Sdk;
using Nitric.Sdk.Storage;
var assets = Nitric.Bucket("assets").With(BucketPermission.Reading);
var files = assets.Files();
files.ForEach(file => file.Delete());
Nitric.Run();
Notes
This method returns a list of File references that exist on the bucket.