1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

GoogleColaboratoryで、Googleドライブのファイルにアクセスする

Last updated at Posted at 2023-08-15

結論

Googleドライブに事前にマウントするコードを実行しておきます。
それができれば、ファイルパスを指定するときにマウントしたファイルパスを指定することでGoogleドライブのファイルにアクセスできます。

サンプルコード

まずはGooleドライブにマウントする

.py
#ドライブにマウントするコード
from google.colab import drive
drive.mount('/content/drive')

上記のコードを実行するとアクセス許可を確認するダイアログが表示されます。
ダイアログの内容に従って許可します。

Gooleドライブのファイルにアクセスする

.py
# 書き込み
with open(f"/content/drive/My Drive/hogefolder/hoge.txt", "w") as f:
    f.write("hoge")
.py
# 読み込み
with open(f"/content/drive/My Drive/hogefolder/hoge.txt", "r") as f:
    print(f.read())
hoge

以上です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?