|
| Best practice for storing a file on Android |
| Iniciado por ar, 08,mar. 2019 15:43 - 1 respuesta |
| |
| | | |
|
| |
| Publicado el 08,marzo 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 |
| |
| |
| | | |
|
| | |
| |
Miembro registrado 26 mensajes |
|
| Publicado el 12,marzo 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) |
| |
| |
| | | |
|
| | | | |
| | |
|