List will return a slice of all subgroups (eg: subdirectories), or keys (eg: files), under a specific group (eg: dir) Note that `key...` may be omitted, in which case, all objects' names at the root of the store are returned. Example, in the volumestore, List() will return all existing volumes names
(key ...string)
| 70 | // Note that `key...` may be omitted, in which case, all objects' names at the root of the store are returned. |
| 71 | // Example, in the volumestore, List() will return all existing volumes names |
| 72 | List(key ...string) ([]string, error) |
| 73 | // Exists checks that a given key exists |
| 74 | // Example: Exists("meta.json") |
| 75 | Exists(key ...string) (bool, error) |
no outgoing calls