Google Drive フォルダー情報の列挙方法

ここでは Google クライアント・ライブラリを用いて、フォルダー情報を取得する方法を説明します。

Google Drive 上のフォルダーは kind が drive#file のままで (drive#folder などではない)、mimeType が application/vnd.google-apps.folder となります。

Google Drive フォルダの ID などは、ファイルをアップロードする際などに必要になります。

しかし残念ながら PyDrive 1.0.1 で試したところ、列挙がうまく動かなかったので、ここでは Google クライアント・ライブラリそのものを利用します。

次のコードでフォルダの名前と ID を列挙できます。

from __future__ import print_function
import httplib2
import os

from apiclient import discovery
import oauth2client
from oauth2client import client
from oauth2client import tools

try:
    import argparse
    flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()
except ImportError:
    flags = None

SCOPES = 'https://www.googleapis.com/auth/drive.metadata.readonly'
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Drive API Python TEST'

def get_credentials():

    home_dir = os.path.expanduser('~')
    credential_dir = os.path.join(home_dir, '.credentials')
    if not os.path.exists(credential_dir):
        os.makedirs(credential_dir)
    credential_path = os.path.join(credential_dir, 'drive-python.json')

    store = oauth2client.file.Storage(credential_path)
    credentials = store.get()
    if not credentials or credentials.invalid:
        flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
        flow.user_agent = APPLICATION_NAME
        if flags:
            credentials = tools.run_flow(flow, store, flags)
        else:
            credentials = tools.run(flow, store)
        print('Storing credentials to ' + credential_path)
    return credentials

def main():

    credentials = get_credentials()
    http = credentials.authorize(httplib2.Http())
    service = discovery.build('drive', 'v3', http=http)

    results = service.files().list(q="mimeType='application/vnd.google-apps.folder'").execute()
    items = results.get('files')
    
    if not items:
        print('No files found.')
    else:
        print('Folders:')
        for item in items:
            print('{0}: {1}'.format(item['name'], item['id']))

if __name__ == '__main__':
    main()

当然ながら Google クライアントライブラリをインストールしていないと失敗しますので、まだの人はインストールしてから実行してください。

初回実行時には認証のためにブラウザが開きます。二回目以降は保存された認証情報を利用します。

ここまでお読みいただき、誠にありがとうございます。SNS 等でこの記事をシェアしていただけますと、大変励みになります。どうぞよろしくお願いします。

© 2024 Python 入門