22

Possible Duplicate:
How to copy selected files from Android with adb pull

I am using adb pull command like this:

adb pull /sdcard/*.trace C:/

but i show me remote object '/sdcard/*.trace' does not exit i check trace files are in the sdcard.Now how to pull these files from sdcard.Can you help me How to fix?

Community
  • 1
  • 1
user1050667
  • 453
  • 1
  • 6
  • 14
  • Don't [repost questions](http://stackoverflow.com/questions/12994599/how-to-pull-trace-file-in-android), even if you delete the original. – Cat Oct 21 '12 at 04:43

1 Answers1

13

I don't think adb pull handles wildcards for multiple files. I ran into the same problem and did this by moving the files to a folder and then pulling the folder.

I found a link doing the same thing. Try following these steps.

How to copy selected files from Android with adb pull

Community
  • 1
  • 1
Aditya
  • 2,148
  • 3
  • 21
  • 34