javascript - HTML5 FileSystem requestQuota Reservation? -
when requesting (and being granted) increase in quota filesystem api, space reserved chrome , lost other applications on device, or opportunistic quota grab, in take space quota, no more needs @ 1 time? example:
navigator.webkitpersistentstorage.requestquota( 1024 * 1024 * 5000, function(grantedsize) { window.requestfilesystem(window.persistent, grantedsize, function(fs) { filesystem = fs; }, filesystemerrorhandler); }, filesystemerrorhandler);
through code above chrome going assign 5gb filesystem
no matter how it's filled, holding onto 5gb until it's cleared user? or chrome take needs 5 gb?
chrome take needs 5 gb.
Comments
Post a Comment