https://github.com/canonical/udisks.dart
Native Dart client library to access UDisks service on Linux.
https://github.com/canonical/udisks.dart
dart
Last synced: 6 months ago
JSON representation
Native Dart client library to access UDisks service on Linux.
- Host: GitHub
- URL: https://github.com/canonical/udisks.dart
- Owner: canonical
- License: mpl-2.0
- Created: 2020-09-15T21:30:11.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T02:23:28.000Z (about 2 years ago)
- Last Synced: 2025-06-02T18:46:00.147Z (8 months ago)
- Topics: dart
- Language: Dart
- Homepage: https://pub.dev/packages/udisks
- Size: 47.9 KB
- Stars: 18
- Watchers: 6
- Forks: 6
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dev/packages/udisks)
[](https://codecov.io/gh/canonical/udisks.dart)
Provides a client to connect to
[UDisks](https://github.com/storaged-project/udisks) - the service that accesses and manipulates disks, storage devices and technologies on Linux.
```dart
import 'package:udisks/udisks.dart';
var client = UDisksClient();
await client.connect();
print('Running UDisks ${client.version}');
print('Supported filesystems: ${client.supportedFilesystems.join(' ')}');
await client.close();
```
## Contributing to udisks.dart
We welcome contributions! See the [contribution guide](CONTRIBUTING.md) for more details.