May 11th, 2009, 07:01 AM
|
#2 (permalink)
|
|
New Member
Join Date: Feb 2009
Posts: 8
Device(s):
Carrier: Not Provided
Thanks: 0
Thanked 0 Times in 0 Posts
|
you need to make sure to put a / at the beginning of the list. So it would be:
adb pull /data/misc/location/gps/nmea C:\Android
if that doesn't work, try the following:
adb remount
adb shell
ls /data/misc/location/gps
see if nmea is listed there. if not, go back one directory:
ls /data/misc/location
see if gps is listed there. if not, go back etc.. until you find where the directory starts.
also, while in the shell, you can use cp to copy from one location to another:
cd /data/misc/location/gps
cp all nmea C:\Android
|
|
|
Last edited by PCTechNerd; May 11th, 2009 at 07:02 AM.
|
|