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 |
|---|---|