繁体   English   中英

如何列出特定谷歌驱动器目录 Python 中的所有文件

[英]How to list all the files in a specific google drive directory Python

按文件夹 ID 列出特定谷歌驱动器目录的所有文件的最佳方法是什么。 如果我构建如下所示的服务,下一步是什么? 找不到任何对我有用的东西。 此示例中的 Service_Account_File 是带有令牌的 json 文件。

SCOPES = ['https://www.googleapis.com/auth/drive']
SERVICE_ACCOUNT_FILE = service_account_file 
credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
service = discovery.build('drive', 'v3', credentials=credentials)

file.list 方法有一个名为 q 的参数。 您可以使用 q 搜索目录中的文件等内容。

假设您知道正在查找的文件夹的文件 ID,您将执行“folderid 中的父母”

这将返回该文件夹中的所有文件。

page_token = None
while True:
    response = drive_service.files().list(q="parents in 'YOURFOLDERIDHERE'",
                                          spaces='drive',
                                          fields='nextPageToken, files(id, name)',
                                          pageToken=page_token).execute()
    for file in response.get('files', []):
        # Process change
        print 'Found file: %s (%s)' % (file.get('name'), file.get('id'))
    page_token = response.get('nextPageToken', None)
    if page_token is None:
        break

我相信你的目标如下。

  • 您想使用 python 的服务帐户检索特定文件夹下的文件列表。

在这种情况下,我想提出以下两种模式。

模式一:

在此模式中,使用 python 的 googleapis 驱动器 API 中的“文件:列表”方法。 但在这种情况下,不会检索特定文件夹中子文件夹中的文件。

from google.oauth2 import service_account
from googleapiclient.discovery import build

SCOPES = ['https://www.googleapis.com/auth/drive']
SERVICE_ACCOUNT_FILE = service_account_file
credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
service = build('drive', 'v3', credentials=credentials)

topFolderId = '###' # Please set the folder of the top folder ID.

items = []
pageToken = ""
while pageToken is not None:
    response = service.files().list(q="'" + topFolderId + "' in parents", pageSize=1000, pageToken=pageToken, fields="nextPageToken, files(id, name)").execute()
    items.extend(response.get('files', []))
    pageToken = response.get('nextPageToken')

print(items)
  • q="'" + topFolderId + "' in parents"表示在topFolderId的文件夹下检索文件列表。
  • 使用pageSize=1000时,可以减少Drive API的使用次数。

模式二:

在此模式中,使用了一个getfilelistpy库。 在这种情况下,也可以检索特定文件夹中子文件夹中的文件。 首先,请按如下方式安装库。

$ pip install getfilelistpy

示例脚本如下。

from google.oauth2 import service_account
from getfilelistpy import getfilelist

SCOPES = ['https://www.googleapis.com/auth/drive']
SERVICE_ACCOUNT_FILE = service_account_file
credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)

topFolderId = '###' # Please set the folder of the top folder ID.
resource = {
    "service_account": credentials,
    "id": topFolderId,
    "fields": "files(name,id)",
}
res = getfilelist.GetFileList(resource)
print(dict(res))
  • 在这个库中,可以使用驱动器API中的“文件:列表”的方法搜索特定文件夹中的子文件夹,googleapis for python。

参考:

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM