Html firefox的localstorage目录是哪个物理目录?

Html firefox的localstorage目录是哪个物理目录?,html,firefox,local-storage,Html,Firefox,Local Storage,我的本地电脑上安装了三种浏览器:firefox、chrome和opera find / -name 'Local Storage' /home/debian8/.config/opera/Local Storage /home/debian8/.config/google-chrome/Default/Local Storage 在opera和chrome上,存储数据的物理目录可以通过find/-name“Local Storage”找到,而不是firefox。 firefox的local

我的本地电脑上安装了三种浏览器:firefox、chrome和opera

find /  -name  'Local Storage'
/home/debian8/.config/opera/Local Storage
/home/debian8/.config/google-chrome/Default/Local Storage
在opera和chrome上,存储数据的物理目录可以通过find/-name“Local Storage”找到,而不是firefox。 firefox的localstorage目录是哪个物理目录

ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage
default  permanent  temporary
为了追踪物理目录,firefox在本地存储中以这种方式存储了一个数组。 1.打开https//firefox中的www.yahoo.com 2.在firebug控制台中使用js存储阵列

var arrDisplay = [0, 1, 1, 1];
localStorage.setItem("menuTitle", arrDisplay);  
ls/home/debian8/.mozilla/firefox/4qfwwwo5.default/storage 默认永久临时

它很可能位于默认目录中

ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default
https+++www.yahoo.com
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com
idb
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb
301792106ttes.files   301792106ttes.sqlite-shm
301792106ttes.sqlite  301792106ttes.sqlite-wal
sqlite3  /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb/301792106ttes.sqlite-shm
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
sqlite> .exit
sqlite3  /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb/301792106ttes.sqlite-wal
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
sqlite> .exit
sqlite3  /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb/301792106ttes.sqlite
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
database            index_data          object_store        unique_index_data 
文件对象\数据对象\存储\索引 sqlite>从数据库中选择*; 试验| sqlite>从索引数据中选择*; sqlite>从对象存储中选择*; sqlite>从唯一索引数据中选择*; sqlite>从文件中选择*; sqlite>从对象_数据中选择*; sqlite>从对象存储索引中选择*

没有关于菜单的线索

它很可能是indexeddb+++fx devtools目录

ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent/indexeddb+++fx-devtools
idb
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent/indexeddb+++fx-devtools/idb
478967115deegvatroootlss--cans.files  478967115deegvatroootlss--cans.sqlite
sqlite3  /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent/indexeddb+++fx-devtools/idb/478967115deegvatroootlss--cans.sqlite
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
database            index_data          object_store          unique_index_data  file     object_data         object_store_index
sqlite> select * from database;
devtools-async-storage|indexeddb://fx-devtools|1|1475141158242996|0|49152
sqlite> select * from  object_store;
1|0|keyvaluepairs|
menuTitle存储在firefox的安装目录中的位置?

在现代firefox中,localStorage数据存储在中,您可以在您的浏览器中找到。
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage
default  permanent  temporary
在您的情况下,看起来您需要:

/home/debian8/.mozilla/firefox/4qfwwwo5.default/webappsstore.sqlite
/storage/default/。。。文件夹用于文件-这与localStorage不同