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

Function application_recovery_files_create

src/daemon/application.c:641–652  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

639}
640
641static bool application_recovery_files_create(char marker_path[APPLICATION_PATH_CAP],
642 char quarantine_path[APPLICATION_PATH_CAP]) {
643 if (!application_unique_recovery_file(marker_path, "marker")) {
644 return false;
645 }
646 if (!application_unique_recovery_file(quarantine_path, "quarantine")) {
647 (void)cbm_unlink(marker_path);
648 marker_path[0] = '\0';
649 return false;
650 }
651 return true;
652}
653
654static void application_recovery_files_remove(const char *marker_path,
655 const char *quarantine_path) {

Callers 1

application_job_recoverFunction · 0.85

Calls 2

cbm_unlinkFunction · 0.85

Tested by

no test coverage detected