Select-GoogleDrive Cmdlet
Google Drive データを検索します。
Syntax
Select-GoogleDrive [parameters]
Remarks
Select-GoogleDrive コマンドレットを使って、SQL SELECT ステートメントに似た構文を用いてGoogle Drive データを検索できます。
$conn = Connect-GoogleDrive -InitiateOAuth "GETANDREFRESH" -OAuthClientId "myClientId" -OAuthClientSecret "myClientSecret" -OAuthSettingsLocation "myOAuthSettings.txt"
Select-GoogleDrive -Connection $conn -Table "Files" -Columns @("Id","Name") -Where "Extension='png'"