herrdu / notes

0 stars 0 forks source link

chrome 如何查看硬盘使用量 #38

Open herrdu opened 2 years ago

herrdu commented 2 years ago

// Request storage usage and capacity left window.webkitStorageInfo.queryUsageAndQuota(webkitStorageInfo.TEMPORARY, //the type can be either TEMPORARY or PERSISTENT function(used, remaining) { console.log("Used quota: " + used + ", remaining quota: " + remaining); }, function(e) { console.log('Error', e); } );