MCPcopy Create free account
hub / github.com/wal-e/wal-e / list

Method list

wal_e/blobstore/file/calling_format.py:72–77  ·  view source on GitHub ↗
(self, prefix)

Source from the content-addressed store, hash-verified

70 remove_empty_dirs(common_path)
71
72 def list(self, prefix):
73 path = "/" + prefix
74 file_paths = [os.path.join(root, f)
75 for root, dirs, files in os.walk(path) for f in files]
76 # convert to an array of Keys
77 return [FileKey(bucket=self, name=f) for f in file_paths]
78
79
80class Connection(object):

Callers 9

__iter__Method · 0.80
_backup_listMethod · 0.80
_backup_listMethod · 0.80
__iter__Method · 0.80
_backup_listMethod · 0.80
_backup_listMethod · 0.80
test_bucket_listFunction · 0.80
_cleanFunction · 0.80
test_policyFunction · 0.80

Calls 2

FileKeyClass · 0.85
joinMethod · 0.45

Tested by 2

test_bucket_listFunction · 0.64
test_policyFunction · 0.64