Skip to content

Instantly share code, notes, and snippets.

Lisp
1
2
3
4
5
6
7
8
@ocmagic
ocmagic / init.el
Last active August 29, 2015 14:27
;;; .emacs --- dot emacs file
;; This file is NOT part of GNU Emacs.
;; This file is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.
;; This file is distributed in the hope that it will be
function sakugaBuckUp() {
var targetfolders = DriveApp.getFoldersByName("DEENデジタル作画");//バックアップ対象のルートフォルダー
var backupRootFolder = DriveApp.getFolderById("0B5AzqqTAWtrCSzZ5dFRzMC1YZFU");//バックアップ先のルートフォルダー
var dest = backupRootFolder.createFolder(Utilities.formatDate(new Date(),'JST', 'yyyy-MM-dd-HH-mm'))
//var dest = backupRootFolder.createFolder(new Date())
while(targetfolders.hasNext()) {
var folder = targetfolders.next();
folderCopy(folder, dest);
}
}