Sample code for 30+ languages & platforms
Delphi DLL

Lookup Google Drive Folder ID Given a Folder Path

See more Google Drive Examples

Demonstrates how to find the Google Drive folder ID given a Folder Path.

This example demonstrates that we cannot simply query by folder name. (We can if every folder name is unique, but if not...) For example, imagine we have the following directory structure on Google Drive:

/AAWorkArea
/AAWorkArea/FolderA
/AAWorkArea/FolderB
/Folder2
/Folder2/FolderA

There are two directories named "FolderA". One is contained within AAWorkArea, and one is contained within "Folder2". To say it differently: One has the parent "AAWorkArea" and the other's parent is "Folder2".

To find the id of "/AAWorkArea/FolderA", we need to first find the id for "AAWorkArea", and then find the id for the folder with name="FolderA" and with AAWorkArea's id in FolderA's parents.

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, StringBuilder, AuthGoogle, JsonObject, Rest;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
gAuth: HCkAuthGoogle;
rest: HCkRest;
bAutoReconnect: Boolean;
json: HCkJsonObject;
jsonResponse: PWideChar;
sbQuery: HCkStringBuilder;

begin
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);

json := CkJsonObject_Create();
CkJsonObject_putEmitCompact(json,False);

// Get the AAWorkArea folder that is in the Google Drive root.
CkRest_AddQueryParam(rest,'q','''root'' in parents and name=''AAWorkArea''');
jsonResponse := CkRest__fullRequestNoBody(rest,'GET','/drive/v3/files');
if (CkRest_getLastMethodSuccess(rest) <> True) then
  begin
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;
CkJsonObject_Load(json,jsonResponse);
Memo1.Lines.Add(CkJsonObject__emit(json));
Memo1.Lines.Add('name: ' + CkJsonObject__stringOf(json,'files[0].name'));
Memo1.Lines.Add('id: ' + CkJsonObject__stringOf(json,'files[0].id'));
Memo1.Lines.Add('mimeType: ' + CkJsonObject__stringOf(json,'files[0].mimeType'));
Memo1.Lines.Add('-');

CkRest_ClearAllQueryParams(rest);

// Now that we know the ID for the AAWorkarea directory, get the id for the FolderA having AAWorkArea as the parent.
sbQuery := CkStringBuilder_Create();
CkStringBuilder_Append(sbQuery,'name = ''FolderA'' and ''');
CkStringBuilder_Append(sbQuery,CkJsonObject__stringOf(json,'files[0].id'));
CkStringBuilder_Append(sbQuery,''' in parents');
CkRest_AddQueryParamSb(rest,'q',sbQuery);

jsonResponse := CkRest__fullRequestNoBody(rest,'GET','/drive/v3/files');
if (CkRest_getLastMethodSuccess(rest) <> True) then
  begin
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;

CkJsonObject_Load(json,jsonResponse);
Memo1.Lines.Add(CkJsonObject__emit(json));
Memo1.Lines.Add('name: ' + CkJsonObject__stringOf(json,'files[0].name'));
Memo1.Lines.Add('id: ' + CkJsonObject__stringOf(json,'files[0].id'));
Memo1.Lines.Add('mimeType: ' + CkJsonObject__stringOf(json,'files[0].mimeType'));
Memo1.Lines.Add('-');

CkAuthGoogle_Dispose(gAuth);
CkRest_Dispose(rest);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbQuery);

end;