LoginSignup
5
1

More than 5 years have passed since last update.

【GAS】ファイルをゴミ箱へ移動させる

Last updated at Posted at 2018-10-11

GAS公式ドキュメント
https://developers.google.com/apps-script/reference/

ゴミ箱へのファイル移動ではなく、ゴミ箱属性の付与という考えらしい

var file = DriveApp.getFileById("hogehoge");
file.setTrashed(true);

※ただし、この操作を行えるのは自分がアクセスできるファイルのみ
共有フォルダ内の不要ファイル一括削除を行いたい場合は、共有フォルダ内に「ゴミ箱」用フォルダをつくり、そこへのファイル移動を行うことになる

5
1
7

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