This PR adds listdir and isfile functionalities to all backends. This is useful when we need to inspect the folder structure of a dataset inside a zip or HDF5 file.
Example:
from vis4d.data.io import HDF5Backend
data_backend = HDF5Backend()
all_entries = data_backend.listdir(data_path)
all_files = [data_backend.isfile(data_path + name) for name in all_entries]
This PR adds listdir and isfile functionalities to all backends. This is useful when we need to inspect the folder structure of a dataset inside a zip or HDF5 file.
Example: