Hemant Bhatt
Hemant Bhatt

Reputation: 485

IndexedDB location in Windows 8 Application

So i am working on this HTML5/JavaScript metro application for windows 8.1 with Indexed Db for storing metadata.

I need to locate the physical file for the database. I have tried looking at "C:\Users\<>\AppData\Local\Microsoft\Internet Explorer\Indexed DB\" but of no use.

Where i should be looking ?

Upvotes: 1

Views: 1567

Answers (1)

Grevling
Grevling

Reputation: 466

This post and this suggests:

Firefox:

<location of the windows user profiles>\<account name>\AppData\Roaming\
Mozilla\Firefox\Profiles\<some random characters>.default\IndexedDB

Chrome:

<location of the windows user profiles>\<account name>\AppData\Local\Google\
Chrome\User Data\Default\IndexedDB

IE:

C:\Users\<<USER>>\AppData\Local\Microsoft\Internet Explorer\Indexed DB\

Upvotes: 1

Related Questions