Home > Enterprise >  How to store files in directory that will be accessible to user in flutter?
How to store files in directory that will be accessible to user in flutter?

Time:05-19

I have encountered a problem that the app needs to save pdf files downloaded from the internet in the downloads folder in both ios and android, but after searching for solutions on the internet I have not found anything that would help in this implementation. I would appreciate if someone could share their experience in implementing such functionality.

CodePudding user response:

It would be better if you can add more details to your questions. It is preferred that you should attach some code or screenshots of your code so that you can get better help.

CodePudding user response:

every app in android or ios has its own folder in the device storage, android apps will be in the android directory.

you can use the path_provider plugin to get the directory of your app, all the information you need will be in this link

  • Related