https://github.com/miomit/sff_lib
Small package designed to simplify working with files/directories
https://github.com/miomit/sff_lib
dart files lib
Last synced: 5 months ago
JSON representation
Small package designed to simplify working with files/directories
- Host: GitHub
- URL: https://github.com/miomit/sff_lib
- Owner: miomit
- License: gpl-3.0
- Created: 2024-01-30T07:00:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-23T14:00:55.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T07:17:34.871Z (over 1 year ago)
- Topics: dart, files, lib
- Language: Dart
- Homepage: https://pub.dev/packages/sff_lib
- Size: 600 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Small package designed to simplify working with files/directories
## Features
- File comparison for identity
- Recursive copying/moving of a directory
- Move/Delete/Copy files according to the rules
## Getting started
Add a dependency to `pubspec.yaml`
```yaml
dependencies:
sff_lib:
```
## Usage
Look in `/example` folder.
```dart
copyDirRec(
Directory('/home/yura/Images'),
Directory('/media/yura/Elements/Images')
).listen(print);
```
## Additional information
This library is under development. With each new version, a new feature will be added.
Also, do not forget to look at the [documentation](https://raw.githack.com/miomit/sff_lib/main/doc/api/index.html).