我無法更改文件夾並查看裏面的內容。文件夾中的文件列表/ DRIVE API PyDRIVE
drive = GoogleDrive(gauth)
file_list = drive.ListFile({'q': "'root' in parents and trashed=false"}).GetList()
for file1 in file_list:
print("File %s\n\n",(file1))
我用下面的代碼:
file_list = drive.ListFile({'q': "'/test1' in parents and trashed=false"}).GetList()
,但它不工作。 有我使用的功能的文檔:https://developers.google.com/drive/v3/reference/files/list
請詳細說明這部分:'但它不起作用'。它不工作__如何?你是否收到任何錯誤訊息?如果是,請在您的問題中包含_exact_ traceback。 – ForceBru