0 purchases
blur detector
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
copied to clipboard
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"/>
copied to clipboard
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));
}
copied to clipboard
Contributors #
Ravi Taak
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.