Created
December 25, 2018 15:40
-
-
Save onesword0618/dffaf8523830435a71f28b04f9985ee7 to your computer and use it in GitHub Desktop.
DriveApp
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.getFiles(); | |
| // ファイル数の分だけ繰り返し処理を実施する | |
| while (files.hasNext()) { | |
| var file = files.next(); | |
| Logger.log(file.getName()); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
マクロでもよくある機能
定期的に実行するようにすれば一定のテンプレートを複製してフォルダとファイルを作成することができる