My organization is starting to use this feature and for testing it would be ideal if we could find and delete these values as well as see what’s written to disk, but I can’t figure out where IE8 is storing them. I found the .sqlite files in
AppData\Local\Apple Computer\Safari for Safari
and
AppData\Roaming\Mozilla\Firefox\Profiles\ryb7f27l.default\webappsstore.sqlite for FF3.5
Any help on IE8 would be appreciated!
The location of local storage on the file system is most likely an implementation detail that is not guaranteed to always be the same from version to version (it could even change with a service pack or update to IE).
To clear local storage using the approved methods, see Clearing the Storage Areas on the Introduction to DOM Storage MSDN page:
An alternative to using the approved methods is to use a tool like Process Monitor to watch disk and Registry accesses while you write something to
window.localStorage. Unfortunately, if you see it writing to a file like%userprofile%\Cookies\index.datit would probably be unwise to delete that file (since it contains information about all the other cookies IE knows about).EDIT: Using my own suggestion I found that local storage seems to be at
%userprofile%\Local Settings\Application Data\Microsoft\Internet Explorer\DOMStore(in Windows XP, Vista and Windows 7 will be slightly different). They are just XML files but I’m not sure how safe they are to delete because of theindex.dat(which may retain information about the existence of the XML files or their contents).