'must i inform the user to give me permission to access the cashed application folder
i am making flutter application handle with videos , audios , images , all from server and there big part handling with cache application folder . save , cashed .. etc ..
i am wondering if i must inform the user to give me permission for that or not ? (only cashed folder )
anyone has know more about this please give me suggestion
late Directory getMainPathh;
Future getTheCasheDirectoryPath()async{
getMainPathh = await getTemporaryDirectory();
}
Solution 1:[1]
No, you don't need to ask the user for permission. This directory can always be cleaned by the user or the system themselves if needed.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Banana |
