从Xamarin迁移到React Native:Xamarin SQLite文件夹路径

时间:2017-10-17 23:04:53

标签: android sqlite xamarin react-native

我目前的公司正在将应用程序从Xamarin迁移到React Native。 问题是将当前令牌存储在Xamarin的SQLite中,来自React Native。

这是在Xamarin中初始化SQLite的代码:

public static SQLiteConnection conn = new SQLiteConnection(System.IO.Path.Combine
        (System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "user.db"));


我尝试使用以下方法从RN检索:https://github.com/andpor/react-native-sqlite-storage

但似乎我们需要指定文件夹路径。我不知道Xamarin中的文件夹路径在哪里。



提前感谢您的回答。

1 个答案:

答案 0 :(得分:2)

System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal)

  • 在Android中:/data/data/@PACKAGE_NAME@/files
  • 在iOS中:@APP_PATH@/Documents