NetShareOSS/open_dir
用于在桌面平台上打开原生目录的 Flutter 插件。
- Stars
- 9
- Forks
- 1
- 最近推送(UTC)
- 2024年10月31日
- 项目状态
- 未归档
语言C++CMakeDartCSwiftRuby
技术话题
原始 README
以下为英文项目原文快照,最新内容请访问 GitHub。
展开 / 收起项目 README
open_dir
Open directory on the native desktop platform with its app (Finder on MacOS, Files on Linux, File Explorer on Windows)
Supported platforms
| MacOS | Linux | Windows | Android | iOS | Web |
|---|---|---|---|---|---|
| ✔️ | ✔️ | ✔️ | ❌️️ | ❌️️ | ❌️️ |
Usage
Add open_dir as a dependency in your pubspec.yaml file. This is Endorsed federated plugin.
This plugin is also supported to highlight/select a specific file after opening the directory.
Example
final _openDirPlugin = OpenDir();
final path = '/path/to/directory';
final highlightedFileName = 'file.txt';
await _openDirPlugin.openNativeDir(path: path, highlightedFileName: highlightedFileName);
Demo
| Open dir | Open dir and highlight file |
|---|---|