Google Apps Script googleドライブ内のファイルのURLを取得する
環境
Google Chrome 111.0.5563.66(Official Build) (64 ビット)
Windows 10 Home 64bit
構文
file変数名.getUrl()
getUrl関数を使って、googleドライブ内のファイルのURLを取得します。
使用例
function myFunction() { // ファイルのidから取得 let file = DriveApp.getFileById('2xDotPMUaGxxxx'); //ファイルのURLを取得 console.log( file.getUrl() ); }