MCPcopy Index your code
hub / github.com/nodejs/node / try_mkdir_r

Function try_mkdir_r

tools/install.py:38–42  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

36 os.symlink(source_path, link_path)
37
38def try_mkdir_r(path):
39 try:
40 os.makedirs(path)
41 except OSError as e:
42 if e.errno != errno.EEXIST: raise
43
44def try_rmdir_r(options, path):
45 path = abspath(path)

Callers 2

try_symlinkFunction · 0.85
try_copyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…