adb pull multiple files

后端 未结 12 1441
挽巷
挽巷 2020-12-04 07:28

What is the best way to pull multiple files using

adb pull

I have on my /sdcard/ 25 files with following name:



        
12条回答
  •  伪装坚强ぢ
    2020-12-04 07:58

    In Android, there are some folder with associated permissions! Some folder belong to root- or system user.

    You guys should change the permissions of those files, folders before doing "adb pull".

    The following commands could help:

    adb shell
    su
    chmod -R 777 target_folder
    exit
    ...
    adb pull /.../target_folder/ . (current local folder)
    

提交回复
热议问题