type
Backend
type Backend struct {
root string
filesystem filesystemOperations
}A filesystem implementation of storage.Backend.
Methods
Backend.Ping()Verify that the root accepts a durable probe write, then remove the probe.
Backend.Put()Atomically and durably write an object with its declared size.
Backend.Open()Open an object stream and metadata.
Backend.Delete()Delete an object and durably record the directory change.
Backend.List()List one bounded page of objects under a prefix in stable key order.