PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Best practice for storing a file on Android
Best practice for storing a file on Android
Débuté par Jim, 08 mar. 2019 15:43 - 1 réponse
Posté le 08 mars 2019 - 15:43
I am almost finished with an app that can grab temperature data from a hardware unit of ours and store it as a .csv file.
The customer will likely need to get at it to email it to someone or themselves for long term storage.

What location would be easiest for the end user to get at?
I used this for the emulator. file_path is string = fCurrentDir
If I used this for the app, it wasn't browsable.

I used this for the app on the phone. file_path is string = /storage/emulated/0/android/data/com.mycompany.appname/files"
This was kind of hard to browse to, so I don't expect a customer to be able to get to it easily.

Should I drop it in their downloads?
What is the best practice?

Thanks

Jim
Membre enregistré
26 messages
Posté le 12 mars 2019 - 07:43
i usually make a directory in sdcard to save the files i need
use adb command to copy file from android

ExeRun("c:\adb\adb.exe pull /sdcard/inty/text/file1.txt " + """" + sDownloadPath + """",exeIconize,exeWait,sDownloadPath)