What is the best way to pull multiple files using
adb pull
I have on my /sdcard/ 25 files with following name:
gps1.trace
gps2.trace
...
gps25.trace
Wildcard does not works:
adb pull /sdcard/gps*.trace .
|
You can use Example:
or, on Windows (since the newline characters are different),
|
|||||
|
|
Pull all your gps traces in /sdcard/gpsTraces
Example of
|
|||||||||
|
|
ADBFS a FUSE Filesystem for Android Debug Bridge if you are using linux or mac |
|||
|
|
Directory pull is available on new android tools. ( I don't know from which version it was added, but its working on latest ADT 21.1 )
|
|||
|
|
|
Here's how I'm doing it at the moment: adb shell busybox tar -c /sdcard/amazonmp3 >amazon.tar Then extract the .tar file afterwards. There's probably a better way but this seems quick. It's not finished yet though (3.5gb and counting) - so wish me luck! |
|||
|
adbbut from the docspullcan be used to pull an entire directory??? If that's the case and these are files generated by your own app then why not write them out to a sub-directory such as/sdcard/mygpsfilesand then useadb pull /sdcard/mygpsfiles. Would that work? – Squonk Jun 17 '12 at 21:25DDMSperspective of eclipse and was able to multi-select files from my sdcard and perform apullon them. If you don't use eclipse, DDMS is available as a separate SDK tool. – Squonk Jun 17 '12 at 21:35