Commit 2c305746 authored by Clemens Wolff's avatar Clemens Wolff

Implement `get_files` with directory argument

parent 4c99b9b6
......@@ -82,6 +82,9 @@ class AzureStorage(object):
return cls.separator.join(path_parts).lstrip(cls.separator)
def get_files(self, path, directory):
if directory and path != directory:
path = op.join(path, directory)
path = self._ensure_blob_path(path)
directory = self._ensure_blob_path(directory)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment