MCPcopy Create free account
hub / github.com/cztomczak/cefpython / rmdir

Function rmdir

tools/automate.py:1051–1055  ·  view source on GitHub ↗

Delete directory recursively.

(path)

Source from the content-addressed store, hash-verified

1049
1050
1051def rmdir(path):
1052 """Delete directory recursively."""
1053 if os.path.exists(path):
1054 print("[automate.py] Removing directory %s" % path)
1055 shutil.rmtree(path, onerror=onerror)
1056
1057
1058def cpdir(src, dst):

Callers 3

build_cefFunction · 0.85
create_cef_directoriesFunction · 0.85
create_prebuilt_binariesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected