https://github.com/glebbatykov/file_copy
Package for copy files and directories. Can track the progress of copying.
https://github.com/glebbatykov/file_copy
copy dart directory file progress
Last synced: about 2 months ago
JSON representation
Package for copy files and directories. Can track the progress of copying.
- Host: GitHub
- URL: https://github.com/glebbatykov/file_copy
- Owner: GlebBatykov
- License: mit
- Created: 2023-05-28T13:46:14.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-26T17:36:33.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T06:46:13.774Z (2 months ago)
- Topics: copy, dart, directory, file, progress
- Language: Dart
- Homepage:
- Size: 18.6 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dev/packages/file_copy)
**Languages:**
[](README.md)
[](README.ru.md)- [Package features](#package-features)
- [Using](#using)# Package features
- copying files;
- recursive copying of directories;
- monitor the progress of copying.# Using
The `CopyFile` class contains methods:
- `copyFile` - copies the file;
- `watchCopyFile` - copies the file, returns the stream with the progress of copying the file, ends the stream when copying is completed;
- `copyDirectory` - copies the directory recursively;
- `watchCopyDirectory` - copies the directory, returns the stream with the progress of copying the file, ends the stream when copying is completed;
- `copyLink` - copies the link.