getLibraryDirectory 不适用于桌面应用程序
getLibraryDirectory not working for desktop app
我正在开发 Flutter 桌面应用程序,但遇到了困难。我想为数据存储创建本地数据库。我正在使用 path_provider 插件来获取保存数据库文件的目录路径。函数 getLibraryDirectory() 在我的应用程序中不起作用。我也在创建数据库时调试我的应用程序,此函数抛出异常“UnimplementedError:getLibraryPath() 尚未实现”。
这是我正在使用的插件。 https://pub.dev/packages/path_provider
任何人都可以帮助我。谢谢
我查看了包的源代码,Windows 和 Linux 上的方法 getLibraryDirectory()
没有实现,因为 属性 getLibraryPath()
调用此方法所需的也没有实现。根据来源 getLibraryDirectory()
似乎仅在 MacOS 上实现。
以下是 Windows 和 Linux 应该实现的方法:
getTemporaryDirectory()
getApplicationSupportDirectory()
getApplicationDocumentsDirectory()
getDownloadsDirectory()
还有一个 Windows 只:
getPath(String folderID) // Retrieve any known folder from Windows.
我正在开发 Flutter 桌面应用程序,但遇到了困难。我想为数据存储创建本地数据库。我正在使用 path_provider 插件来获取保存数据库文件的目录路径。函数 getLibraryDirectory() 在我的应用程序中不起作用。我也在创建数据库时调试我的应用程序,此函数抛出异常“UnimplementedError:getLibraryPath() 尚未实现”。
这是我正在使用的插件。 https://pub.dev/packages/path_provider
任何人都可以帮助我。谢谢
我查看了包的源代码,Windows 和 Linux 上的方法 getLibraryDirectory()
没有实现,因为 属性 getLibraryPath()
调用此方法所需的也没有实现。根据来源 getLibraryDirectory()
似乎仅在 MacOS 上实现。
以下是 Windows 和 Linux 应该实现的方法:
getTemporaryDirectory()
getApplicationSupportDirectory()
getApplicationDocumentsDirectory()
getDownloadsDirectory()
还有一个 Windows 只:
getPath(String folderID) // Retrieve any known folder from Windows.