Skip to content

Instantly share code, notes, and snippets.

@michaelvdnest
Last active January 16, 2020 08:37
Show Gist options
  • Save michaelvdnest/0fcb810f210b281a49f756a9acff5c6c to your computer and use it in GitHub Desktop.
Save michaelvdnest/0fcb810f210b281a49f756a9acff5c6c to your computer and use it in GitHub Desktop.
Sync android files with adb
  1. Download the Android SDK Platform Tools.

  2. To pull a directory from the device run the below command

    .\adb.exe pull -a /sdcard/Download/dir C:\Temp\

  3. To push the directory run the below command.

    .\adb.exe push -sync C:\Temp\dir /sdcard/Download/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment