adb pull
命令是可行的
adb pull <remote> <local>
其中 <remote>
是远程设备上的文件路径,<local>
是您希望将文件保存到本地计算机上的路径。例如:
adb pull /sdcard/example.txt C:\Users\YourUsername\Downloads\example.txt
这将把远程设备上 /sdcard/example.txt
文件的内容下载到本地计算机的 C:\Users\YourUsername\Downloads\
目录下。如果目标目录不存在,adb pull
会自动创建它。