/** * Example source code for unlinking files using GFAL2 */ #include #include // You only need this header #include static void _abort_on_gerror(const char* msg, GError* error) { if (!error) return; fprintf(stderr, "%s: (%d) %s\n", msg, error->code, error->message); exit(1); } int main(int argc, char** argv) { const char* url; if (argc < 2) { fprintf(stderr, "Missing url parameter"); abort(); } url = argv[1]; // Errors will be put here GError* error = NULL; // Create a gfal2 context gfal2_context_t context; context = gfal2_context_new(&error); _abort_on_gerror("Could not create the gfal2 context", error); // Unlink gfal2_unlink(context, url, &error); _abort_on_gerror("Could not unlink", error); printf("DELETED %s\n", url); // Release the context gfal2_context_free(context); return 0; }