gpt4 book ai didi

Python Google Drive API - 列出整个驱动器文件树

转载 作者:太空狗 更新时间:2023-10-29 21:24:26 25 4
gpt4 key购买 nike

我正在构建一个使用 Google 驱动器 API 的 python 应用程序,所以开发进展顺利,但我在检索整个 Google 驱动器文件树时遇到问题,我需要这样做有两个目的:

  1. 检查路径是否存在,所以如果我想在 root/folder1/folder2 下上传 test.txt,我想检查文件是否已经存在,如果存在则更新它
  2. 构建一个可视文件浏览器,现在我知道谷歌提供了他自己的(我现在记不起名字了,但我知道它存在)但我想将文件浏览器限制为特定文件夹。

现在我有一个获取 Gdrive 根目录的函数,我可以通过递归调用一个列出单个文件夹内容的函数来构建这三个函数,但它非常慢并且可能会向谷歌发出数千个请求这是 Not Acceptable 。

这里是获取根的函数:

def drive_get_root():
"""Retrieve a root list of File resources.
Returns:
List of dictionaries.
"""

#build the service, the driveHelper module will take care of authentication and credential storage
drive_service = build('drive', 'v2', driveHelper.buildHttp())
# the result will be a list
result = []
page_token = None
while True:
try:
param = {}
if page_token:
param['pageToken'] = page_token
files = drive_service.files().list(**param).execute()
#add the files in the list
result.extend(files['items'])
page_token = files.get('nextPageToken')
if not page_token:
break
except errors.HttpError, _error:
print 'An error occurred: %s' % _error
break
return result

这里是从文件夹中获取文件的那个

def drive_files_in_folder(folder_id):
"""Print files belonging to a folder.
Args:
folder_id: ID of the folder to get files from.
"""
#build the service, the driveHelper module will take care of authentication and credential storage
drive_service = build('drive', 'v2', driveHelper.buildHttp())
# the result will be a list
result = []
#code from google, is working so I didn't touch it
page_token = None
while True:
try:
param = {}

if page_token:
param['pageToken'] = page_token

children = drive_service.children().list(folderId=folder_id, **param).execute()

for child in children.get('items', []):
result.append(drive_get_file(child['id']))

page_token = children.get('nextPageToken')
if not page_token:
break
except errors.HttpError, _error:
print 'An error occurred: %s' % _error
break
return result

例如现在要检查一个文件是否存在,我正在使用这个:

def drive_path_exist(file_path, list = False):
"""
This is a recursive function to che check if the given path exist
"""

#if the list param is empty set the list as the root of Gdrive
if list == False:
list = drive_get_root()

#split the string to get the first item and check if is in the root
file_path = string.split(file_path, "/")

#if there is only one element in the filepath we are at the actual filename
#so if is in this folder we can return it
if len(file_path) == 1:
exist = False
for elem in list:
if elem["title"] == file_path[0]:
#set exist = to the elem because the elem is a dictionary with all the file info
exist = elem

return exist
#if we are not at the last element we have to keep searching
else:
exist = False
for elem in list:
#check if the current item is in the folder
if elem["title"] == file_path[0]:
exist = True
folder_id = elem["id"]
#delete the first element and keep searching
file_path.pop(0)

if exist:
#recursive call, we have to rejoin the filpath as string an passing as list the list
#from the drive_file_exist function
return drive_path_exist("/".join(file_path), drive_files_in_folder(folder_id))

知道如何解决我的问题吗?我在这里看到了一些关于溢出的讨论,在一些答案中,人们写道这是可能的,但当然没有说明如何!

谢谢

最佳答案

为了在您的应用中构建一棵树的表示,您需要这样做......

  1. 运行驱动器列表查询以检索所有文件夹
  2. 迭代结果数组并检查 parents 属性以构建内存中的层次结构
  3. 运行第二个驱动器列表查询以获取所有非文件夹(即文件)
  4. 对于返回的每个文件,将其放入您的内存树中

如果您只是想检查文件-A 是否存在于文件夹-B 中,该方法取决于名称“文件夹-B”是否保证是唯一的。

如果它是唯一的,只需对 title='file-A' 执行 FilesList 查询,然后对其每个父项执行 Files Get 并查看其中是否有一个名为“folder-B”。

您没有说明这些文件和文件夹是由您的应用创建的,还是由使用 Google Drive Web 应用的用户创建的。如果您的应用程序是这些文件/文件夹的创建者,则可以使用一个技巧将搜索限制为单个根目录。说你有

MyDrive/app_root/folder-C/folder-B/file-A

你可以让文件夹-C、文件夹-B 和文件-A 成为 app_root 的子节点

这样你就可以限制你所有的查询包括

and 'app_root_id' in parents

注意。此答案的先前版本强调,Drive 文件夹不受倒置树层次结构的限制,因为单个文件夹可能有多个父文件夹。自 2021 年起,这不再适用,云端硬盘文件(包括文件夹,它们只是特殊文件)只能由一个父级创建。

关于Python Google Drive API - 列出整个驱动器文件树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22092402/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com