google-apps-script
DriveApp - getFileById(id)
サーチ…
備考
また、ファイルのURLでファイルを取得することもできます。ファイルのIDはURLにあるため、URL全体ではなくIDを使用すると、パラメータが短くなります。 IDではなくURLを格納すると、より多くのスペースが必要になります。
ファイルIDを使用してGoogleドライブからファイルを取得する
function getGoogleDriveFileById(id) {
var file;
file = DriveApp.getFileById(id);//Returns a file - The "id" must be a string
//One way to manually get a file ID
// - Open the file from Google Drive
// - The file ID is in the URL in the browsers address bar
//https://docs.google.com/spreadsheets/d/File_ID_is_here/edit#gid=0
};
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow