HTML5 FileSystem requestQuota Reservation?

时间:2015-08-17 01:47:26

标签: javascript html5 google-chrome html5-filesystem

当请求(并被授予)FileSystem API的配额增加时,现在为Chrome保留了多少空间并丢失到设备上的其他应用程序,或者它是机会主义的配额获取,因为它将需要空间达到配额,但不超过任何时候需要的空间?举个例子:

navigator.webkitPersistentStorage.requestQuota( 1024 * 1024 * 5000,
      function(grantedSize) {
        window.requestFileSystem(window.PERSISTENT, grantedSize, function(fs) {
           filesystem = fs;
      }, fileSystemErrorHandler);
   }, fileSystemErrorHandler); 

通过上面的代码,Chrome无论如何填充都会向filesystem分配5GB,保留5GB,直到用户清除为止?或者Chrome只需要它最多需要5 GB?

1 个答案:

答案 0 :(得分:0)

Chrome只需要最多5 GB的内容。