Zain_Work
(Muhammad Zain)
October 24, 2022, 9:30am
#1
How i can save my list to storage in csv formate and than read this file again in app ?
Taifun
October 24, 2022, 12:28pm
#2
Convert the list into a csv table, just use the list to csv table block
Then use the file component to save the file to shared storage or ASD
From an Android point of view there are an → Internal Storage and an → External Storage.
1. Internal Storage
The Internal Storage can only be accessed with a rooted device.
1.1 The app package is saved in
/data/data/<packageName>/
1.2. The Private directory is
/data/user/0/<packageName>/files/
This private directory can be used with the File component to save / read text (setting the path without a slash). It can only be accessed by your app and is automatically removed when the app is un…
Taifun
Zain_Work
(Muhammad Zain)
October 24, 2022, 2:21pm
#3
File component does not exist “create new directory” as button click. I mean How can i attach "create new directory " block to “when button click” block ???
Taifun
October 24, 2022, 4:48pm
#4
just use this filename while saving the file
/Downloads/myFolder/myFile.csv
Taifun
1 Like