我需要使用我的 iOS 应用将文件上传到 Google Drive 上的特定文件夹。我知道文件夹的名称,但为了将其上传到特定文件夹,我还需要指定文件夹的标识符。这是我的代码的一部分,我在其中硬编码了目标文件夹的标识符。所以,我的问题是如何以编程方式找到目标文件夹的标识符。
NSString *mimeType = @"image/png";
NSData *imageData = UIImagePNGRepresentation(imageView.image);
GTLUploadParameters *uploadParameters = [GTLUploadParameters uploadParametersWithData:imageData MIMEType:mimeType];
GTLDriveFile *fileObj = [GTLDriveFile object];
fileObj.title = @"this_is_a_test.png";
GTLDriveParentReference *parentRef = [GTLDriveParentReference object];
parentRef.identifier = @"0B1Em3SqS0WHrQi15SHB4OHRGd2c";
fileObj.parents = [NSArray arrayWithObject:parentRef];