Google Apps Script googleドライブのフォルダの名前を取得する
環境
Google Chrome 111.0.5563.66(Official Build) (64 ビット)
Windows 10 Home 64bit
書式
let 変数名 = DriveApp.getFolderById('フォルダーID’);
変数名.getName()
使用例
function myFunction() { // フォルダのidから取得 let tt = DriveApp.getFolderById('1KemSd3lci8Npnr57N1qxthtvczzfzlhO'); // フォルダの名前を取得 console.log("folder name: "+tt.getName()); }
実行結果
folder name: testdir