An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![Pub Package](https://img.shields.io/pub/v/udisks.svg)](https://pub.dev/packages/udisks)
[![codecov](https://codecov.io/gh/canonical/udisks.dart/branch/main/graph/badge.svg?token=OY0ZQCREQJ)](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.