Home > OS >  How do we push all files using adb push?
How do we push all files using adb push?

Time:11-11

Like in Mac/Linux, we have adb push * (using wildcard method) command to push all files inside the folder similarly whats the command for same function in windows system?

CodePudding user response:

Have you tried pushing the contents of a directory? If not, try the following:

adb push C:\the\directory\.

  • Related