rzane / file_store

🗄️ A unified interface for file storage backends
MIT License
19 stars 3 forks source link

Add the ability to list keys that start with a given prefix #11

Closed rzane closed 3 years ago

rzane commented 3 years ago
iex> Enum.to_list(FileStore.list!(store))
["bar", "foo/bar"]

iex> Enum.to_list(FileStore.list!(store, prefix: "foo"))
["foo/bar"]