MCPcopy Create free account
hub / github.com/apache/arrow / create_dir

Method create_dir

python/pyarrow/tests/test_fs.py:98–104  ·  view source on GitHub ↗
(self, path, recursive)

Source from the content-addressed store, hash-verified

96 return infos
97
98 def create_dir(self, path, recursive):
99 if path == "recursive":
100 assert recursive is True
101 elif path == "non-recursive":
102 assert recursive is False
103 else:
104 raise IOError
105
106 def delete_dir(self, path):
107 assert path == "delete_dir"

Callers 15

gcsfsFunction · 0.45
s3fsFunction · 0.45
azurefsFunction · 0.45
py_fsspec_s3fsFunction · 0.45
test_get_file_infoFunction · 0.45
test_create_dirFunction · 0.45
test_delete_dirFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected