を失敗しました操作は機能しています。クエリを実行することは許可されていますか?ここでクエリは、私はこのコードを使用していGoogleドライブのAndroid
答えて
You can use the
com.google.android.gms.drive.query
package to search a user's Drive account for files whose metadata match your search criteria. You can issue a query for a specific folder or on the entire filesystem.Note: The Android Drive API only works with the
https://www.googleapis.com/auth/drive.file
scope. This means that only files which a user has opened or created with your application can be matched by a query.
のドキュメントでクエリーを構築するための一例です。
A query is created by building an instance of the
Query
class and specifying the search criteria withFilters
. The following example finds all files with the title "HelloWorld.java
".Query query = new Query.Builder() .addFilter(Filters.eq(SearchableField.TITLE, "HelloWorld.java")) .build();
You can use the
Filters
class to build expressions. Multiple filters can be joined together using the and and or methods.Once a Query object has been constructed it can be executed on the entire file system using
Drive.DriveApi
as follows:Drive.DriveApi.query(googleApiClient, query);
This query starts in the My Drive (the root) folder and recursively traverse the entire filesystem, returning all entries matching the Filters expression tree.
A query can alternatively be executed only in a specific folder using an instance of the
DriveFolder
class, as shown by:DriveFolder folder= ...; folder.query(query);
This call does not scan recursively; only direct entries in this folder matching filter conditions are returned.
- 1. GoogleドライブV3再開可能私はGoogleドライブのAPI V3を使用してGoogleドライブからファイルをダウンロードするには、このコードを使用
- 2. Googleは私がOauth2.0を使用してGoogleドライブの認証とドライブV2 APIで働いているWebアプリケーション
- 3. Android用GoogleドライブAPI(GDAA)を使用して大容量ファイルをGoogleドライブにアップロード
- 4. PHP私は次のPHPコード使用してデGoogleドライブAPIでファイルをアップロードしようとしている
- 5. androidアプリケーション用GoogleドライブAPIを使用
- 6. のPostgresを使用して、私はしたいここで、クエリ
- 7. Android用GoogleドライブAPIを使用してGoogleドキュメントドキュメントをテキストファイルとしてダウンロードする
- 8. GoogleドライブのAndroid API:私はGoogleのAPIに接続する私のアプリでは、クエリ
- 9. 私はSimpleHTTPServerを使用して、私のコードはここでエラー
- 10. Googleのスクリプト - 私はドライブのフォルダに新しいドキュメントを検索し、このコードを持って
- 11. AndroidドライブからのみGoogleドライブAPIを使用してGoogleドライブにスプレッドシートファイルを作成して編集するにはどうすればよいですか?
- 12. GoogleドライブAndroid APIを使用してGoogleドライブのすべてのファイルを一覧表示できますか?
- 13. Androidドライブでプログレスバーを使用してGoogleドライブにファイルをアップロードする方法
- 14. Googleドライブを使用してドライブのパス名を取得
- 15. は今、私はこのコードを使用していたフォルダ
- 16. は、私はこのコードを使用しているangular2
- 17. は、私はこのコードを使用していた
- 18. 私は、このMySQLのクエリを使用してい
- 19. googleドライブmaxResultsクエリ
- 20. 私は次のエラーを取得していますGoogleドライブ
- 21. ラムダフィルターは、私は私のコードでは、このラムダ式を使用してい
- 22. Android用GoogleドライブAPIは空のファイルを返します
- 23. 私はこの単純なクエリでJDBIを使用してい
- 24. GoogleドライブAPI v3とJavascriptを使用してArrayBufferのコンテンツをGoogleドライブにアップロード
- 25. Googleが、私はこのAPIを使用してい提案
- 26. Googleドライブ用ファイルピッカーAndroid用残りのAPI
- 27. Googleドライブのファイルのアップロードは、私はPOSTリクエスト以下&からマルチパートファイルをアップロードするには、GoogleドライブV3 REST APIを使用していますドキュメント
- 28. 私はしかし、私が使用したくない、すべてのドライブのデフォルトディレクトリを取得するには、次のコードを使用しているQB64
- 29. file_exists&is_file私はこのコードを使用しています
- 30. 私はこのコードを使用しています