blur_detector 0.0.1
blur_detector: ^0.0.1 copied to clipboard
A Flutter package that provides utilities for detecting blur in images. Ideal for applications that require image quality analysis.
Using this package we can easily can find any files or directory in a Directory. #
Features
- Scan Files in Directory
- Scan Audio Files in Directory
- Scan Video Files in Directory
- Scan Image Files in Directory
- Scan Any Type of Files in Directory
- Get All Directory From a Directory/Path
Platforms Supported
- Android
Usage #
Give the permissions #
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
import 'package:files_scanner_android/files_scanner_android.dart';
void main() {
// . is the path you need to enter the proper path like - example - '/storage/emulated/0/Download/YoutubeDownloader'
FileScanner.getFilesByExtension(".", [".mp4"]).then((value) => print(value));
FileScanner.getAllDirectoryAndFileinDirectory(".").then((value) => print(value));
FileScanner.getAllFilesOfDirectory(".", ).then((value) => print(value));
FileScanner.getAllDirectoryinDirectory(".", ).then((value) => print(value));
}
Contributors #
Having Issues #
File the Issue here
Looking to contribute to this package: #
🤘🏻 Great! Fork the Repo, Update Code, Write a meaningful Commit Message, Send a PR. That's all you need to Contribute.