Vinians2006 Active Member Licensed User Longtime User Mar 13, 2012 #1 Hi ppl Im creating an application and so I used File.WriteList() to write a list to a txt file. Where can I find this file on emulator or device since I used File.DirInternal? Thanks
Hi ppl Im creating an application and so I used File.WriteList() to write a list to a txt file. Where can I find this file on emulator or device since I used File.DirInternal? Thanks
thedesolatesoul Expert Licensed User Longtime User Mar 13, 2012 #2 It will be in: B4X: /data/data/<yourpackagename>/files Upvote 0
Vinians2006 Active Member Licensed User Longtime User Mar 13, 2012 #3 thedesolatesoul said: It will be in: B4X: /data/data/<yourpackagename>/files Click to expand... Ok thanks, but where can I find it on the emulator and on the device ? Upvote 0
thedesolatesoul said: It will be in: B4X: /data/data/<yourpackagename>/files Click to expand... Ok thanks, but where can I find it on the emulator and on the device ?
thedesolatesoul Expert Licensed User Longtime User Mar 13, 2012 #4 There are many ways to reach it. If you are handy with the linux command line you can use adb. B4X: adb -e shell Or you can use ddms: Using DDMS | Android Developers Both are in the platforms-tools in the android-sdk. Upvote 0
There are many ways to reach it. If you are handy with the linux command line you can use adb. B4X: adb -e shell Or you can use ddms: Using DDMS | Android Developers Both are in the platforms-tools in the android-sdk.
Vinians2006 Active Member Licensed User Longtime User Mar 13, 2012 #5 thedesolatesoul said: There are many ways to reach it. If you are handy with the linux command line you can use adb. B4X: adb -e shell Or you can use ddms: Using DDMS | Android Developers Both are in the platforms-tools in the android-sdk. Click to expand... Thanks a lot. Problem solved! Upvote 0
thedesolatesoul said: There are many ways to reach it. If you are handy with the linux command line you can use adb. B4X: adb -e shell Or you can use ddms: Using DDMS | Android Developers Both are in the platforms-tools in the android-sdk. Click to expand... Thanks a lot. Problem solved!