Google Apps Scriptでシート・ファイルを作成

· ·

概要 🔗

Google Apps Script で Spreadsheet を作成したり、任意のテキストファイルを作成してフォルダへ移動。

今回は markdown ファイルを作成したくて作っていました。markdown ファイルを Drive 内で生成して特定のフォルダへ保管、そのファイルを別の用途に使う予定です。

sample 🔗

Spreadsheet を作成してフォルダ移動 🔗

1
2
3
4
5
var ss = SpreadsheetApp.create("testfile"); //file名は自由に設定
var ssId = ss.getId();
var file = DriveApp.getFileById(ssId);
var folder = DriveApp.getFolderById("folder id"); //folderのIDを入れる
file.moveTo(folder);

任意の file を作成して Drive に保存 🔗

1
2
3
4
5
6
fileName = "test.md"; //file名を設定
content = ""; //コンテンツを保存
newFile = DriveApp.createFile(fileName, content);
fileId = DriveApp.getFileById(newFile.getId());
folder = DriveApp.getFolderById("folder id"); //作成したファイルの移動先フォルダIDを設定
fileId.moveTo(folder); //作成したファイルを特定のフォルダへ移動
comments powered by Disqus