Deepesh Shetty
Deepesh Shetty

Reputation: 1166

Search contents of a file in google drive

I have built a document management system on top of app engine using java . I use Google drive to store all my document . This is document management system is just a part my application . I have provided user facilities like download , upload , versioning of documents etc making use of drive API . Now I have requirement for search the content of the file and when the content matches any of the files in drive it show me the file names where pattern matches .

I searched for drive API's but couldn't find suitable solution .

Need some help .

Upvotes: 5

Views: 1680

Answers (1)

koma
koma

Reputation: 6566

see here :

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

and

fullText    string  contains    Full text of the file including title, description, and content.

in the drive SDK documentation

Upvotes: 5

Related Questions