Skip to content

Instantly share code, notes, and snippets.

@onesword0618
Created December 25, 2018 16:24
Show Gist options
  • Select an option

  • Save onesword0618/d6f31790ffbc3a91cfffa5443ff4918e to your computer and use it in GitHub Desktop.

Select an option

Save onesword0618/d6f31790ffbc3a91cfffa5443ff4918e to your computer and use it in GitHub Desktop.
Class File
// 指定したスプレッドシートが一週間更新されていない場合は削除する
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