MCPcopy Create free account
hub / github.com/bugy/script-server / create_dir

Function create_dir

src/tests/test_utils.py:58–66  ·  view source on GitHub ↗
(dir_path)

Source from the content-addressed store, hash-verified

56
57
58def create_dir(dir_path):
59 if not os.path.exists(temp_folder):
60 os.makedirs(temp_folder)
61
62 full_path = os.path.join(temp_folder, dir_path)
63 if not os.path.exists(full_path):
64 os.makedirs(full_path)
65
66 return full_path
67
68
69def setup():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected