Skip to content

Instantly share code, notes, and snippets.

@shazron
Created March 19, 2012 22:07
Show Gist options
  • Save shazron/2127546 to your computer and use it in GitHub Desktop.
Save shazron/2127546 to your computer and use it in GitHub Desktop.
iOS WebKit Database Locations

iOS WebKit Database Locations

"~" signifies the application's folder.

window.localStorage (4.3)

  1. ~/Library/WebKit/LocalStorage/file__0.localstorage

window.localStorage (5.1)

  1. ~/Library/Caches/file__0.localstorage

WebSQL (4.3)

  1. ~/Library/WebKit/Databases/Databases.db
  2. ~/Library/WebKit/Databases/file__0/*.db (each database creates one file here)

WebSQL (5.1)

  1. ~/Library/Caches/Databases.db
  2. ~/Library/Caches/file__0/*.db (each database creates one file here)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment