Google Apps Script googleドライブの残りの使用量を取得する
環境
Google Chrome 111.0.5563.66(Official Build) (64 ビット)
Windows 10 Home 64bit
書式
DriveApp.getStorageLimit() – DriveApp.getStorageUsed()
残りの使用量を取得するには、「getStorageLimit」で上限を取得してから「storageUsed」で使用量を引き算します。
使用例
function myFunction() { // 容量上限 const storageLimit = DriveApp.getStorageLimit(); // 現在使用している容量 const storageUsed = DriveApp.getStorageUsed(); //MB単位 console.log((storageLimit - storageUsed) / (1024 ** 2) + 'MB'); //GB単位 console.log((storageLimit - storageUsed) / (1024 ** 3) + 'GB'); }
実行結果
9538.775918960571MB
9.315210858359933GB