Sample code for 30+ languages & platforms
C

Delete File

See more Google Drive Examples

Permanently deletes a file owned by the user without moving it to the trash. If the target is a folder, all descendants owned by the user are also deleted.

See Google Drive Files delete for more information.

Chilkat C Downloads

C
#include <C_CkAuthGoogle.h>
#include <C_CkRest.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkAuthGoogle gAuth;
    HCkRest rest;
    BOOL bAutoReconnect;
    const char *fileId;
    HCkStringBuilder sbPath;
    const char *jsonResponse;

    success = FALSE;

    success = TRUE;

    // It requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // This example uses a previously obtained access token having permission for the 
    // Google Drive scope.

    gAuth = CkAuthGoogle_Create();
    CkAuthGoogle_putAccessToken(gAuth,"GOOGLE-DRIVE-ACCESS-TOKEN");

    rest = CkRest_Create();

    // Connect using TLS.
    bAutoReconnect = TRUE;
    success = CkRest_Connect(rest,"www.googleapis.com",443,TRUE,bAutoReconnect);

    // Provide the authentication credentials (i.e. the access token)
    CkRest_SetAuthGoogle(rest,gAuth);

    // To delete a file, we must use the fileId.
    // This must've been obtained by listing or searching for the file
    // to get the metadata.
    // Assume we already did that an have the fileId
    fileId = "0B53Q6OSTWYoldUprZVU1ZVQ5Z0k";

    sbPath = CkStringBuilder_Create();
    CkStringBuilder_Append(sbPath,"/drive/v3/files/");
    CkStringBuilder_Append(sbPath,fileId);

    jsonResponse = CkRest_fullRequestNoBody(rest,"DELETE",CkStringBuilder_getAsString(sbPath));
    if (CkRest_getLastMethodSuccess(rest) != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkAuthGoogle_Dispose(gAuth);
        CkRest_Dispose(rest);
        CkStringBuilder_Dispose(sbPath);
        return;
    }

    // A successful response will have a status code equal to 204 and the response body is empty.
    // (If not successful, then there should be a JSON response body with information..)
    if (CkRest_getResponseStatusCode(rest) != 204) {
        printf("response status code = %d\n",CkRest_getResponseStatusCode(rest));
        printf("response status text = %s\n",CkRest_responseStatusText(rest));
        printf("response header: %s\n",CkRest_responseHeader(rest));
        printf("response JSON: %s\n",jsonResponse);
        CkAuthGoogle_Dispose(gAuth);
        CkRest_Dispose(rest);
        CkStringBuilder_Dispose(sbPath);
        return;
    }

    printf("File deleted.\n");


    CkAuthGoogle_Dispose(gAuth);
    CkRest_Dispose(rest);
    CkStringBuilder_Dispose(sbPath);

    }