- スプレッドシートを作成する必要があります。
- 次に、ツール>スクリプトエディタに移動します。
- 以下のスクリプトをカット/ペーストして、デフォルトで挿入されたすべてのコンテンツを置き換えることができます。
- THIS_SHOULD_BE_YOUR_FOLDER_IDと表示されている場所にフォルダーIDを追加する必要があります(引用符は残してください)。
- それを保存。
- 再生/実行ボタンを押す
- 要求されたら、実行する許可を与える必要があります。
それでうまくいくはずです。ここでの出力の作業例。
/* modified from @hubgit and http://stackoverflow.com/questions/30328636/google-apps-script-count-files-in-folder
for this stackexchange question http://webapps.stackexchange.com/questions/86081/insert-image-from-google-drive-into-google-sheets by @twoodwar
*/
function listFilesInFolder(folderName) {
var sheet = SpreadsheetApp.getActiveSheet();
sheet.appendRow(["Name", "Date", "Size", "URL", "Download", "Description", "Image"]);
//change the folder ID below to reflect your folder's ID (look in the URL when you're in your folder)
var folder = DriveApp.getFolderById("THIS_SHOULD_BE_YOUR_FOLDER_ID");
var contents = folder.getFiles();
var cnt = 0;
var file;
while (contents.hasNext()) {
var file = contents.next();
cnt++;
data = [
file.getName(),
file.getDateCreated(),
file.getSize(),
file.getUrl(),
"https://docs.google.com/uc?export=download&confirm=no_antivirus&id=" + file.getId(),
file.getDescription(),
"=image(\"https://docs.google.com/uc?export=download&id=" + file.getId() +"\")",
];
sheet.appendRow(data);
};
};