0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GASでDriveにファイル作成できない

Posted at

はじめに

こんにちは、ユーゴです。今回は、久しぶりにGASについて紹介します。
GASのコードをChatGPTに書かせたのですが、そのときに遭遇したエラーについて紹介します。

課題

GASでドライブにスプシを作成しようとした。

Drive.File.insert(file,blob)

このとき、以下のエラーが出る

TypeError: Drive.File.insert is not a function.

解決

Drive.File.insertは、(おそらく)廃止されました。
新しく以下のメソッドを使用してください。

Drive.File.create(file,blob)

参考:App Script 拡張ドライブサービス

まとめ

いかがだったでしょうか。今回は、GASのエラーと修正を紹介しました。本件ではネットで調べてもすぐに出てこなかったので、リファレンスを直接見に行きました。余談ですが、最近は量子コンピュータにハマっており、論文やqiskitのリファレンスを足軽く見に行く癖がつきました。

このように、GASのエラーと対処方法から、Unity, AWS, 量子コンピュータなど様々なトピックを紹介していきます。
お役に立てましたら、いいね, フォローなどよろしくお願いします!

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?