Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I think adb's push is file-based. I want to be able to push entire folders. Is there an easy way without scripting?

Thanks!

Edit: I need to work with sub-folders.

Edit: Seems that adb pull is recursive but push is not. So I changed the title and description accordingly.

share|improve this question

3 Answers

up vote 1 down vote accepted

Try this (worked with subfolders): adb push mySourceFolder/. myDestAndroidFolder

share|improve this answer
I marked your answer as correct because I find your sample the clearest one. Although demilano gave the output as well, the push example wasn't as clear as yours. – kakyo May 3 at 17:32

adb pull, pulls all the files in the specified directory:

$ adb pull /mnt/sdcard/
pull: building file list...
pull: /mnt/sdcard/t3.txt -> ./t3.txt
pull: /mnt/sdcard/t2.txt -> ./t2.txt
pull: /mnt/sdcard/t1.txt -> ./t1.txt
3 files pulled. 0 files skipped.

or

$ adb push . /mnt/sdcard/
push: ./t2.txt -> /mnt/sdcard/t2.txt
push: ./t3.txt -> /mnt/sdcard/t3.txt
push: ./t1.txt -> /mnt/sdcard/t1.txt
3 files pushed. 0 files skipped.
share|improve this answer
1  
What if I have sub folders in that directory? – kakyo Oct 30 '12 at 19:10
You can try creating some folders and running it – dtmilano Oct 30 '12 at 19:55
I've tried it already. It doesn't work. That's exactly why I asked this question. – kakyo Oct 30 '12 at 20:10
ok, i see. It won't copy empty subfolders....I'll mark your answer as correct. – kakyo Oct 30 '12 at 20:17
Just realized that I asked for both push and pull. So I reverted the "vote as correct" with an up-vote to you. – kakyo Oct 30 '12 at 20:24

I realize this question is a little old and I'm about to mention scripting when the question excluded it, but I'm going to answer this anyway. Mostly, because I wish I had found this answer here, before having to work it out myself.

adb push WILL work recursively, if all of the subfolders are present already. They can be empty, it just seems that adb push can not make folders. I found this to be a useful distinction because one could run a series of commands like this:

$ adb shell mkdir /folder
$ adb shell mkdir /folder/sub1
$ adb shell mkdir /folder/sub2
$ adb push folder

So, yes, one could make a small wrapper script to do this automatically. However, I think the more important point is that it just requires the folders to be there. Which means that if this is something that you are going to update multiple times in the same folder. For instance, adding pictures to an existing subfolder structure would work great over and over again with the single adb push command.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.