MCPcopy Create free account
hub / github.com/NVlabs/SPADE / mkdirs

Function mkdirs

util/util.py:141–146  ·  view source on GitHub ↗
(paths)

Source from the content-addressed store, hash-verified

139
140
141def mkdirs(paths):
142 if isinstance(paths, list) and not isinstance(paths, str):
143 for path in paths:
144 mkdir(path)
145 else:
146 mkdir(paths)
147
148
149def mkdir(path):

Callers

nothing calls this directly

Calls 1

mkdirFunction · 0.85

Tested by

no test coverage detected