无法在Andriod上找到SQL Lite文件

时间:2019-05-18 12:50:09

标签: sqlite xamarin.forms

好吧,我创建了一个SQL Lite数据库并将其作为Andriod资产嵌入到我的应用程序中,问题是我使用以下代码访问数据库的设备上存储的文件到底在哪里

public Database()
{           
    var path = Path.Combine(System.Environment.
     GetFolderPath(System.Environment.
     SpecialFolder.Personal), "StockApp.db");

     Console.Write("OPening Database dbPath" + path);

     database = new SQLiteAsyncConnection(path);
 }

当我搜索文件时,找不到它,但是当我使用内部调试器时,它将文件放置在以下位置。

它很好,并且确实在表中放置了一行

路径“ /data/user/0/com.companyname.StockApp/files/StockApp.db”字符串

但是我实际要测试的STK7设备在哪里,所以有什么想法吗?

enter image description here

enter image description here

enter image description here

0 个答案:

没有答案