Created
December 25, 2018 16:24
-
-
Save onesword0618/d6f31790ffbc3a91cfffa5443ff4918e to your computer and use it in GitHub Desktop.
Class File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 指定したスプレッドシートが一週間更新されていない場合は削除する | |
| var files = DriveApp.getFilesByName('Untitled spreadsheet'); | |
| while (files.hasNext()) { | |
| var file = files.next(); | |
| // 実行日 - ファイルの最終更新日 > 日数 * 時間 * 1時間(60) * 1分(60) * 1秒(1ミリ秒) | |
| if (new Date() - file.getLastUpdated() > 7 * 24 * 60 * 60 * 1000) { | |
| file.setTrashed(true); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment