If you find this video useful, consider Following me on: Twitter: twitter.com/theretroportal Instagram: instagram.com/retroportalstudio LinkedIn: www.linkedin.com/in/parasjainrps Git: github.com/retroportalstudio Happy Coding! ✌️😁
I dont mean to be so off topic but does any of you know of a way to get back into an instagram account..? I stupidly lost the account password. I would appreciate any tips you can give me.
I like the way you explain everything. Just try to have both the IDE and Emulator side by side, it's easier to follow the tutorial with both screen at the same time.
Thanks a lot for this it helped me out a lot, but how about a download function where it doesn't show the file in the app folder? similar to youtube and netflix. Thanks!
thanks for this tutorial, it's very useful. I'm working on sound recorder, it seems the file are saved on temporary directory, but I want to create a folder for the App so that all the record can be saved there permanently. Please how can I accomplish this task?
Hey bro you explanation is best but can you develop small project in MVC you follow 1.MVC 2.Clean code 3.Test cases 4.multiple screen transition 5.app deployment. Please can cover this topics ,so that we can build app.👍
great video thank you, for future reference instead of using for loop, you can easily make split like this String s = directory.path ; s.split("Android/").first // /storage/emulated/0/
Excellent video! Very well explained. Simple and clear. Well done. Question: I'd like to download csv files into the download directory. Is it possible to adapt this code? How can I do to move the file from the temporary directory to the download directory?
in the instruction await directory.create(recursive: true); return the next errror : FileSystemException: Creation failed, path = '/storage/emulated/0/RpsApp' (OS Error: Permission denied, errno = 13) and before the error the app ask me is I allowed to give permision
Can you please help me When we receive json file from api Then save it into storage to read again when our app will start again How is this happen ❓❓❓ Which technique is used to store json file data
in 2022 your explanation still works which is something exceptional due to so many changes in android and flutter, congratulations, my problem is with the emulator that doesn't work, doesn't allow it, on mobile it works perfectly, do you have any tips?
Hello, thanks for the video. It's very simple to understand with its didactics. I'm getting this problem: "I/flutter (20628): FileSystemException: Creation failed, path = '/storage/emulated/0/OnlaineApp' (OS Error: Permission denied, errno = 13)" , how can I fix it?
so you downloaded the video, but let's say you downloaded a pdf to the folder in the phone so how would you be able to read the downloaded pdf in the application?
Can someone help me? I've got error: FileSystemException: Creation failed, path = '/storage/emulated/0/Report' (OS Error: Operation not permitted, errno = 1) even after I allowed the permission? I'm developing using an android 11 device, is this a problem for android 11?
try using your phone instead of emulated phone. Also add one more permission in android manifest -> and after installing that app in your physical phone allow it permission from app info to full media access and it gets fixed !!!!!!!!
please answer a big fan here! 1. How can I download video from firebase storage like youtube App which is only accessible in App? 2. How can I show that video in download session of our app without internet?
@@vrajendramandloi5917 I forgot how to solve that but i think bottom source code is useful and remember I solve that with add another permission if (await _requestPermission(Permission.storage) && await _requestPermission(Permission.manageExternalStorage) && await _requestPermission(Permission.photos) && await _requestPermission(Permission.mediaLibrary)
Great video, cant find many on saving to local storage properly, My only issues is that I keep getting the error creation failed, operation not permitted even though its requesting and returning granted. Any thought?
hi thank you for explanation and don't you mind could you upload another video to explain how to upload file from file manager (external storage) i had a trouble with file picker (the latest update) , i have now a project and i couldn't find the best source for helping me , please help me :(
This Approach is not working for Android 11. do you have any solution for that. i tried to replicate exactly the same way but it is not getting created. ** when i try to run the app via connecting to laptop this works .. but it does not work when i build a APK and deploy to a mobile.. Path and all is absolutely correct i have checked it via dialogs.
Sir , there is a issue ! Whenever we download any image or video using dio and then saving it any custom folder we made in the external directory . the file is saved but the issue is that it is not showing in the gallery ! What should we do
@@imyogisingh I didn't understand can you please explain in details. Actually I am new to flutter, Can I get your contact number or something. Please help.
Hey. Is it possible to "grab the file" without a file or image picker so the user is not forced to open the files folder on his phone and to post this on a server?
@@amanjain6084 Actually I found a way. I download i file from firebase in a new folder which gets created before downöoading and saves it into this folder. Now i can automatically delcare a new file from the path which the file got saved to. Now I can use this file without even picking a file by myself in app, so the app does it for the user.
@@aniketkumarsinha2537 I found a fix, you most likely have your SDK versions in the build.gradle set to 30. I set mine to 29 and had to use the same plugin versions that the youtuber’s github repo had and ran my flutter app with null safety off
Hy Can you help me? I am unable to download any file in android 11. I can download files in the Android/data/package_name folder but when I am trying to access the download folder or movies folder I can't write data there.
If you find this video useful, consider Following me on:
Twitter: twitter.com/theretroportal
Instagram: instagram.com/retroportalstudio
LinkedIn: www.linkedin.com/in/parasjainrps
Git: github.com/retroportalstudio
Happy Coding! ✌️😁
I dont mean to be so off topic but does any of you know of a way to get back into an instagram account..?
I stupidly lost the account password. I would appreciate any tips you can give me.
amazing video, Thank you. Does it work for IOS also?
I like the way you explain everything. Just try to have both the IDE and Emulator side by side, it's easier to follow the tutorial with both screen at the same time.
Thanks a lot for this it helped me out a lot, but how about a download function where it doesn't show the file in the app folder? similar to youtube and netflix. Thanks!
it's so joyful watching your tutorial, thank you for this man, I appreciate it
This fixed days of headaches thank you so much
your tutorials are just perfect ❤️
thanks for this tutorial, it's very useful.
I'm working on sound recorder, it seems the file are saved on temporary directory, but I want to create a folder for the App so that all the record can be saved there permanently. Please how can I accomplish this task?
Hey bro you explanation is best but can you develop small project in MVC you follow
1.MVC
2.Clean code
3.Test cases
4.multiple screen transition
5.app deployment.
Please can cover this topics ,so that we can build app.👍
YOURE A GENIUS!!! THANK YOU FOR SHARING.
Nice tutorial. Really helped. How about when i want to view the downloaded file only within the app? similar to youtube and netflix. Thanks!
We always use i or j variable in for loop. Its the law in programming. Do follow it. just kidding very nice tutorial thanks bro
Hello brother, Thanks for the amazing tutorial. Can I open the file as soon as it downloads? How can I do that?
great video thank you, for future reference instead of using for loop, you can easily make split like this
String s = directory.path ;
s.split("Android/").first // /storage/emulated/0/
Thank you. This is extremely helpful...
Excellent video! Very well explained. Simple and clear. Well done. Question: I'd like to download csv files into the download directory. Is it possible to adapt this code? How can I do to move the file from the temporary directory to the download directory?
in the instruction await directory.create(recursive: true); return the next errror : FileSystemException: Creation failed, path = '/storage/emulated/0/RpsApp' (OS Error: Permission denied, errno = 13) and before the error the app ask me is I allowed to give permision
I place ur url in the same exact code but when the phone download it it wont open and says (cant open this link) i dont know how to fix that?
Can you please help me
When we receive json file from api
Then save it into storage to read again when our app will start again
How is this happen ❓❓❓
Which technique is used to store json file data
Thanks man you saved my day!
can u please make a tutorial for a simple camera app which click a photo and save into custom location in phone
But is it possible to save the file in external storage? Without going for hidden private data of android, the file should be visible externally.
Thanks for the tutorial i appreciate your work man
in 2022 your explanation still works which is something exceptional due to so many changes in android and flutter, congratulations, my problem is with the emulator that doesn't work, doesn't allow it, on mobile it works perfectly, do you have any tips?
Hello, thanks for the video. It's very simple to understand with its didactics.
I'm getting this problem: "I/flutter (20628): FileSystemException: Creation failed, path = '/storage/emulated/0/OnlaineApp' (OS Error: Permission denied, errno = 13)" , how can I fix it?
Very helpful! Maybe You know about API 30+, with MediaStore etc, how to implement it in Flutter?
Can I open desitned folder in my app flutter
Top content ! Thanks a lot 👍🏼
Thank you, this is verfy helpful!
awesome tutorial
so you downloaded the video, but let's say you downloaded a pdf to the folder in the phone so how would you be able to read the downloaded pdf in the application?
Hello one question. Does the allow permission only appear once? Because I need it to appear every time I download the file.
please update this tutorial. Thanks in advance
really helpful this video, thankyou
Can someone help me? I've got error: FileSystemException: Creation failed, path = '/storage/emulated/0/Report' (OS Error: Operation not permitted, errno = 1) even after I allowed the permission? I'm developing using an android 11 device, is this a problem for android 11?
did you fix it? how?
@@DelgadoRecords Try by setting the compileSdkVersion and targetSdkVersion to 29
try using your phone instead of emulated phone.
Also add one more permission in android manifest -> and after installing that app in your physical phone allow it permission from app info to full media access and it gets fixed !!!!!!!!
Creation failed, path = '/storage/emulated/0/RPSApp' (OS Error: Operation not permitted, errno = 1)
thanks man, its working
please answer a big fan here!
1. How can I download video from firebase storage like youtube App which is only accessible in App?
2. How can I show that video in download session of our app without internet?
if we want to download a file in ios, its possible it save in image gallery saver ?
thank you for your tutorial. excuse me source code which see in above video don't work for android 11. do you have any solve for this problem??
I am trying for figure out a solution for that! Once i find one, i'll sure make a video on that!
@@RetroPortalStudio have u made a video on that ??
did you got any solution ??
@@vrajendramandloi5917
I forgot how to solve that but i think bottom source code is useful and remember I solve that with add another permission
if (await _requestPermission(Permission.storage) &&
await _requestPermission(Permission.manageExternalStorage) &&
await _requestPermission(Permission.photos) &&
await _requestPermission(Permission.mediaLibrary)
@@moeinkpr9100 Thank you, this actually helped me :)
God bless you, thanks a lot
Great video 👍🏻
Great video, cant find many on saving to local storage properly, My only issues is that I keep getting the error creation failed, operation not permitted even though its requesting and returning granted. Any thought?
Hey! Did you find any solution?
what's with the request legacy storage thing? what has changed with sdk 29+?
thank you so much ,, best of the best channel
What if we want to save the file in Downloads Directory for IOS?
I try to find out too now
Good day, please how do I upload a video and get a URL like the one used on the video ...
is there a way to replace the file if there's already a file with the same name ?
Дядя, лучший! Спасибо
hi thank you for explanation and don't you mind could you upload another video to explain how to upload file from file manager (external storage) i had a trouble with file picker (the latest update) , i have now a project and i couldn't find the best source for helping me , please help me :(
Important video❤️
how can i get this to save a file created on the app, to those storages places?
thank you
Do read write files please
This Approach is not working for Android 11. do you have any solution for that. i tried to replicate exactly the same way but it is not getting created.
** when i try to run the app via connecting to laptop this works .. but it does not work when i build a APK and deploy to a mobile.. Path and all is absolutely correct i have checked it via dialogs.
Thanks , Very Ncie
Sir , there is a issue ! Whenever we download any image or video using dio and then saving it any custom folder we made in the external directory . the file is saved but the issue is that it is not showing in the gallery ! What should we do
did you solved that?
@@desmondmiles8544 yes ! Resolved it
@@imyogisingh Please share. How?
@@nitishgarg4716 just use Register callback in the init state !
@@imyogisingh I didn't understand can you please explain in details. Actually I am new to flutter, Can I get your contact number or something. Please help.
Nice
Could you do for saving into real devices like android phone?
hey there! I hope you are doing well, have you find the solution. If yes Please share.
*_That's very goood code_*
hi, does it work for android 11 ? thank you
did you got any solution for this i.e. Android 11.
Hey. Is it possible to "grab the file" without a file or image picker so the user is not forced to open the files folder on his phone and to post this on a server?
Then how you want it to happen can i know
@@amanjain6084 Actually I found a way. I download i file from firebase in a new folder which gets created before downöoading and saves it into this folder. Now i can automatically delcare a new file from the path which the file got saved to. Now I can use this file without even picking a file by myself in app, so the app does it for the user.
FileSystemException: Creation failed, path = '/storage/emulated/0/Papers' (OS Error: Operation not permitted, errno = 1)
Getting this error....plzz help anyone
Did you ever find an answer to this error?
@@armynoncomtools3643 no
@@aniketkumarsinha2537 I found a fix, you most likely have your SDK versions in the build.gradle set to 30. I set mine to 29 and had to use the same plugin versions that the youtuber’s github repo had and ran my flutter app with null safety off
@@armynoncomtools3643 Check my reply
@@aniketkumarsinha2537 I found the answer. You need to request permission to Permission.manageExternalStorage instead of Permission.storage
not working anymore , please update it ! thanks for effort
How to save file ?Please Explain
Thanks alot bro
Clean and perfect tutorial
Flutter sucks at Managing storage files! But we still gotta roll with it 🤷🏻♂️
Hy
Can you help me? I am unable to download any file in android 11. I can download files in the Android/data/package_name folder but when I am trying to access the download folder or movies folder I can't write data there.
hey there! I hope you are doing well, I am facing kind of same problem Videos are not saving in the gallery , Please help if you know why.
@@nitishgarg4716 you can't directly save files to storage
@@nitishgarg4716 I found a solution btw
@@nitishgarg4716 I am working on it
@@zainansari1057 ok
my files image a how to display my emulator view example status download app view
first comment. Love it fast
👏👏
First one.
can we save file in app only that are not access by gallary??