Flutter SharedPreferences Windows 位置
Flutter SharedPreferences Windows location
SharedPreferences
将本地数据保存在 Windows 的什么地方?比如路径在哪里?我指的是这个:
final prefs = await SharedPreferences.getInstance();
var myData = prefs.getString('myData');
谢谢
根据 Shared Preferences documentation,它存储在 Windows 的本地 AppData 文件夹中。
从Windows platform interface的代码扫描来看,这似乎是pathProvider.getApplicationSupportPath()
得到的路径。您可以在您的代码中调用它来获取文件存储位置的具体路径。
SharedPreferences
将本地数据保存在 Windows 的什么地方?比如路径在哪里?我指的是这个:
final prefs = await SharedPreferences.getInstance();
var myData = prefs.getString('myData');
谢谢
根据 Shared Preferences documentation,它存储在 Windows 的本地 AppData 文件夹中。
从Windows platform interface的代码扫描来看,这似乎是pathProvider.getApplicationSupportPath()
得到的路径。您可以在您的代码中调用它来获取文件存储位置的具体路径。