MCPcopy Create free account
hub / github.com/apache/impala / ls

Method ls

tests/util/adls_util.py:54–61  ·  view source on GitHub ↗
(self, path)

Source from the content-addressed store, hash-verified

52 self.adls_cli_client.copy_from_local(src, dst)
53
54 def ls(self, path):
55 file_paths = self.adlsclient.ls(path)
56 files= []
57 for f in file_paths:
58 fname = f.split("/")[-1]
59 if not fname == '':
60 files += [fname]
61 return files
62
63 def exists(self, path):
64 return self.adlsclient.exists(path)

Calls

no outgoing calls