How to find folder in google drive

I have implement the function upload file to google drive. I have done it following the guide in quick start.

Now i'm doing the function upload file to specific folder *(Ex: upload file to "My_Folder_name")*. I found the sample in API Reference. The trouble is how can i get the parentId (folder id) if i only know the name of folder.

I could not find any function to search folder by name...

Is the only one way to get folder by get all the files, then check MimeType is equals with "application/vnd.google-apps.folder" and compare it with folder name.

if("application/vnd.google-apps.folder".equals(body.getMimeType()) && "My_Folder_name".equals(body.getTitle()) ){
            ....        
}

Thanks in advance.


You can add the q query parameter to your request URL and use the Drive query language to restrict your search:

https://developers.google.com/drive/search-parameters

To search for folders only and restrict the search by title, your query should look like:

mimeType = 'application/vnd.google-apps.folder' and title = 'My_Folder_name'

Query should be as follows:

mimeType='application/vnd.google-apps.folder' and name='foldername'

In Python:

service.files().list(q="mimeType='application/vnd.google-apps.folder' and name='foldername'",
                                         spaces='drive',
                                         fields='nextPageToken, files(id, name)',
                                         pageToken=page_token).execute()

Note: name='foldername' not title='foldername'


You need to do two things:

Use files.list (which gives full file resources)(https://developers.google.com/drive/v2/reference/files/list). Amend your query to add the parent id you want to search in.

mimeType = 'application/vnd.google-apps.folder' and 'folderId' in parents

链接地址: http://www.djcxy.com/p/66428.html

上一篇: 如何查找Google云端硬盘文件夹中的内容是否已更改

下一篇: 如何在谷歌驱动器中查找文件夹