如何使用Flutter Desktop打开windows资源管理器?
How to use Flutter Desktop open windows explorer?
我想打开 windows 资源管理器应用程序,而不是打开对话框。例如,Edge 在文件夹中的显示。
有一个插件open_file:open_file: ^3.2.1
import 'package:open_file/open_file.dart';
import 'package:path_provider/path_provider.dart';
await OpenFile.open('$dir\');
您可以将 file:
个目录的 URL 传递给 url_launcher
。例如:
launch('file://C:');
我想打开 windows 资源管理器应用程序,而不是打开对话框。例如,Edge 在文件夹中的显示。
有一个插件open_file:open_file: ^3.2.1
import 'package:open_file/open_file.dart';
import 'package:path_provider/path_provider.dart';
await OpenFile.open('$dir\');
您可以将 file:
个目录的 URL 传递给 url_launcher
。例如:
launch('file://C:');