storage_path 0.2.0
StoragePath #
A flutter plugin to get all images, audios, videos and files location path in json format.
Only for Android. If you like this plugin, buy me a cup of coffee. PayPal
dependencies:
storage_path: ^0.2.0
import 'package:storage_path/storage_path.dart';
Sample Code
try {
imagePath = await StoragePath.imagesPath; //contains images path and folder name in json format
} on PlatformException {
imagesPath = 'Failed to get path';
}
AND
videoPath = await StoragePath.videoPath; //this will return videos path
audioPath = await StoragePath.audioPath; //this will return audios path
filePath = await StoragePath.filePath; //this will return files path
Image Json Sample
[
{
"files": [
"path/screenshot/abc.png",
"path/screenshot/pqr.png"
],
"folderName": "screenshot"
}
]
File Json Sample
[
{
"files": [
{
"mimeType": "application/pdf",
"size": "34113",
"title": "C001-SP-2719^201902",
"path": "/storage/emulated/0/Download/abc.pdf"
}
],
"folderName": "Download"
}
]
Audio Json Sample
[
{
"files": [
{
"album": "ABC",
"artist": "PQR",
"path": "/storage/emulated/0/Download/todo.mp3",
"dateAdded": "1515060080",
"displayName": "todo.mp3",
"duration": "235986",
"size": "9506989"
}
],
"folderName": "Download"
}
]
Video Json Sample
[
{
"files": [
{
"path": "/storage/emulated/0/DCIM/Camera/VID_20190304_112455.mp4",
"dateAdded": "1551678904",
"displayName": "VID_20190304_112455.mp4",
"duration": "7147",
"size": "12787914"
}
],
"folderName": "Camera"
}
]
0.2.0 #
Cursor closed. Duplicate path bug fixed.
0.1.0 #
Migrated to AndroidX.
StoragePath #
A flutter plugin to get image, audio, video and files path.
Only for Android. If you like this plugin, buy me a cup of coffee. PayPal
dependencies:
storage_path: ^0.1.0
import 'package:storage_path/storage_path.dart';
Sample Code
try {
imagePath = await StoragePath.imagesPath; //contains images path and folder name in json format
} on PlatformException {
imagesPath = 'Failed to get path';
}
AND
videoPath = await StoragePath.videoPath;
audioPath = await StoragePath.audioPath;
filePath = await StoragePath.filePath;
Image Json Sample
[
{
"files": [
"path/screenshot/abc.png",
"path/screenshot/pqr.png"
],
"folderName": "screenshot"
}
]
File Json Sample
[
{
"files": [
{
"mimeType": "application/pdf",
"size": "34113",
"title": "C001-SP-2719^201902",
"path": "/storage/emulated/0/Download/abc.pdf"
}
],
"folderName": "Download"
}
]
Audio Json Sample
[
{
"files": [
{
"album": "ABC",
"artist": "PQR",
"path": "/storage/emulated/0/Download/todo.mp3",
"dateAdded": "1515060080",
"displayName": "todo.mp3",
"duration": "235986",
"size": "9506989"
}
],
"folderName": "Download"
}
]
Video Json Sample
[
{
"files": [
{
"path": "/storage/emulated/0/DCIM/Camera/VID_20190304_112455.mp4",
"dateAdded": "1551678904",
"displayName": "VID_20190304_112455.mp4",
"duration": "7147",
"size": "12787914"
}
],
"folderName": "Camera"
}
]
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
storage_path: ^0.2.0
2. Install it
You can install packages from the command line:
with Flutter:
$ flutter pub get
Alternatively, your editor might support flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:storage_path/storage_path.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
86
|
Health:
Code health derived from static analysis.
[more]
|
99
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
99
|
Overall:
Weighted score of the above.
[more]
|
92
|
We analyzed this package on Dec 10, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.7.0
- pana: 0.13.1+4
- Flutter: 1.12.13+hotfix.4
Health issues and suggestions
Document public APIs. (-1 points)
7 out of 7 API elements have no dartdoc comment.Providing good documentation for libraries, classes, functions, and other API elements improves code readability and helps developers find and use your API.
Format lib/storage_path.dart
.
Run flutter format
to format lib/storage_path.dart
.
Maintenance suggestions
The package description is too short. (-1 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Dependencies
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.68.0 <3.0.0 | ||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.11 | 1.14.12 | |
meta | 1.1.8 | ||
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 |