如何读取 Shared Google Drive 下多个文件夹中的文件?

How to read files in multiple folders under Shared Google Drive?

是否可以在 Google 共享驱动器中获取文件? PyDrive 能够遍历 MyDrive 中的文件,但不能遍历 Shared Drive 中的文件。这些文件位于多个文件夹中:

Department -> PDF -> MONTH YEAR -> DATE -> DAILY REPORT.pdf

代码已尝试但都返回“查看文件夹级别”:

# #Make GoogleDrive instance with Authenticated GoogleAuth instance
# drive = GoogleDrive(gauth)
f = drive.ListFile({"q": "mimeType='application/vnd.google-apps.folder' and trashed=false}).GetList()

for folder in f:
    print(folder['title'], folder['id'])

查看文件级别:

# # Auto-iterate through all files that matches this query
# file_list = drive.ListFile({'q': "'{}' in parents and trashed=false".format(folder_id)}).GetList()
# # print(file_list)
# for file1 in file_list:
#   print('title: %s, id: %s' % (file1['title'], file1['id']))

找到一个类似的案例。 它现在可以使用代码:

# file_list =  drive.ListFile({'q':"'<Team_Drive_Id_Or_Folder_Id>' in parents and trashed=false", 'corpora': 'teamDrive', 'teamDriveId': '<Team_Drive_Id>', 'includeTeamDriveItems': True, 'supportsTeamDrives': True}).GetList()