MCPcopy Index your code
hub / github.com/emscripten-core/emsdk / rmfile

Function rmfile

emsdk.py:457–460  ·  view source on GitHub ↗
(filename)

Source from the content-addressed store, hash-verified

455
456# Removes a single file, suppressing exceptions on failure.
457def rmfile(filename):
458 debug_print(f'rmfile({filename})')
459 if os.path.lexists(filename):
460 os.remove(filename)
461
462
463def mkdir_p(path):

Callers 5

unzipFunction · 0.85
download_fileFunction · 0.85
generate_em_configFunction · 0.85
mainFunction · 0.85

Calls 1

debug_printFunction · 0.85

Tested by

no test coverage detected