0

我正在开发 Flutter 桌面应用程序并陷入了困境。我想为数据存储创建本地数据库。我正在使用 path_provider 插件来获取用于保存数据库文件的目录路径。函数 getLibraryDirectory() 在我的应用程序中不起作用。我也在创建数据库时调试我的应用程序,此函数抛出异常“UnimplementedError:getLibraryPath() 尚未实现”。

这是我正在使用的插件。https://pub.dev/packages/path_provider

任何人都可以帮助我。谢谢

4

1 回答 1

0

我查看了包的源代码,getLibraryDirectory()在 Windows 和 Linux 上没有实现该方法,因为getLibraryPath()调用此方法所需的属性也没有实现。基于源代码getLibraryDirectory()似乎仅在MacOS上实现。

以下是应为Windows 和 Linux实施的方法:

  • getTemporaryDirectory()
  • getApplicationSupportDirectory()
  • getApplicationDocumentsDirectory()
  • getDownloadsDirectory()

还有一个仅适用于 Windows

  • getPath(String folderID) // Retrieve any known folder from Windows.
于 2021-03-05T16:48:01.420 回答