有没有办法在谷歌驱动器文件的属性中搜索?

Sas*_*try 2 java google-drive-api

我想搜索这样的文件,但出现异常。

query = "mimeType ='application/pdf' and properties has { key="+ "'" + agency + "'" +"and value contains"+ "'" + someValue + "'" + " and visibility='PUBLIC'} ";
request = service.files().list().setQ(query);
Run Code Online (Sandbox Code Playgroud)

我们需要按精确值搜索吗?

query = "mimeType ='application/pdf' and properties has { key="+ "'" + agency + "'" +"and value = "+ "'" + someValue + "'" + " and visibility='PUBLIC'} ";
request = service.files().list().setQ(query);
Run Code Online (Sandbox Code Playgroud)

第二个正在工作,但是否有支持通配符的功能?

May*_*ayK 5

是的,对于自定义属性,您必须使用精确值进行搜索

properties has { key='additionalID' and value='8e8aceg2af2ge72e78' and visibility='PRIVATE' }
Run Code Online (Sandbox Code Playgroud)

https://developers.google.com/drive/web/search-parameters#properties