PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → Best practice for storing a file on Android
Best practice for storing a file on Android
Iniciado por Jim, mar., 08 2019 3:43 PM - 1 resposta
Publicado em março, 08 2019 - 3:43 PM
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
Membro registado
26 mensagems
Publicado em março, 12 2019 - 7:43 AM
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)