Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Where are sessionStorage and localStorage stored on the client's computer?
Could you tell me the path?

Question&Answers:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
979 views
Welcome To Ask or Share your Answers For Others

1 Answer

Firefox

Firefox stores localstorage in webappsstore.sqlite file in the profile folder.

Firefox (Windows XP):

C:Documents and Settings<Windows login/user name>Application DataMozillaFirefoxProfiles<profile folder>webappsstore.sqlite

Firefox (Windows Vista and above):

C:Users<Windows login/user name>AppDataRoamingMozillaFirefoxProfiles<profile folder>webappsstore.sqlite

or:

%APPDATA%MozillaFirefoxProfiles<profile folder>webappsstore.sqlite

Firefox on linux:

~/.mozilla/firefox/<profile folder>/webappsstore.sqlite

Firefox on mac:

~/Library/Application Support/Firefox/Profiles/<profile folder>/webappsstore.sqlite

or:

~/Library/Mozilla/Firefox/Profiles/<profile folder>/webappsstore.sqlite

Chrome

Chrome stores in separate files inside the Local Storage directory.

Chrome on windows:

%LocalAppData%GoogleChromeUser DataDefaultLocal Storage

Chrome on linux:

~/.config/google-chrome/Default/Local Storage/

Chrome on mac:

~/Library/Application Support/Google/Chrome/<Profile>/Local Storage/

commonly:

~/Library/Application Support/Google/Chrome/Default/Local Storage/

Internet explorer:

I am a bit unsure, but think this will do the trick

%userprofile%AppDataLocalLowMicrosoftInternet ExplorerDOMStorage

Opera

As said by OammieR:

C:UsersAdministratorAppDataRoamingOperaOperasessionsautosave.win

or as said by Kevin Hakanson:

C:UsersAdministratorAppDataLocalOperaOperapstorage

Sources


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...