Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show the remaining space of the localStorage?

I'm creating a webapp which uses the localStorage.

I would like to show something like: X % is used over Y Megabytes

How to calculate that?

Regards.

like image 669
Syl Avatar asked Sep 17 '25 10:09

Syl


2 Answers

IE has a proprietary propery "window.localStorage.remainingSpace" which returns the remaining space in bytes. Unfortunately can't find similar functionality in any of the other browsers.

http://msdn.microsoft.com/en-us/library/cc197016(v=vs.85).aspx

like image 95
Roy Paterson Avatar answered Sep 19 '25 06:09

Roy Paterson


I think that this will help you out Calculating usage of localStorage space

There is no way to query to browser for that exact information

like image 24
JoshStrange Avatar answered Sep 19 '25 07:09

JoshStrange