MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / cbm_rmdir

Function cbm_rmdir

src/foundation/compat_fs.c:571–579  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

569}
570
571int cbm_rmdir(const char *path) {
572 wchar_t *wpath = cbm_path_to_wide(path);
573 if (!wpath) {
574 return CBM_NOT_FOUND;
575 }
576 int ret = _wrmdir(wpath);
577 free(wpath);
578 return ret;
579}
580
581/* Build a properly-quoted Windows command line from an argv array.
582 * Returns a heap-allocated wide string, or NULL on allocation failure.

Callers 15

cli.cFile · 0.85
cbm_cmd_installFunction · 0.85
search_scratch_closeFunction · 0.85
diag_directory_closeFunction · 0.85
diag_directory_prepareFunction · 0.85
test_cli.cFile · 0.85
test_diagnostics.cFile · 0.85

Calls 1

cbm_path_to_wideFunction · 0.85

Tested by 7

cleanup_long_db_fixtureFunction · 0.68
jl_fixture_closeFunction · 0.68
th_rmtreeFunction · 0.68
version_test_cleanupFunction · 0.68