dependencies:
path_provider: ^1.6.27 # get last Version From https://pub.dev/packages/path_provider/install
字符串 1.代码
Directory tempDir = await getTemporaryDirectory();
String tempPath = tempDir.path; //C:\Users\USER_NAME\AppData\Local\Temp
Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path; //C:\Users\USER_NAME\Documents
//Warning: on debug mode this code get location project but in release mode will get your location app correctly
String dir = Directory.current.path; // PATH_APP
4条答案
按热度按时间gk7wooem1#
使用**
Platform.resolvedExecutable
**(dart:io
的)。我在Flutter/Windows中测试过它,它工作正常。奇怪的是,
Platform.executable
返回null
。我之所以这么说很奇怪,是因为它的类型是String不可空。这个意外的null值可能会导致崩溃或难以检测的错误(但最终Flutter桌面不在稳定通道中)。amrnrhlw2#
字符串
Directory.current.path
(在dart:io
包中)返回项目文件夹的当前工作目录(在开发时)或从发布版本运行时的可执行目录。8gsdolmq3#
试用软件包:path_provider
1.在pubspec.yaml中设置此代码
字符串
1.代码
型
zfciruhq4#
我和你有同样的问题,并以这种方式解决:
字符串
它将给予您的“运行”文件的位置