abd传输命令:
原理:利用adb连接电脑和手机,用python写一个代码:遍历手机上的所有图片,传输到电脑上。
具体代码:
import subprocess
import os
#电脑地址
source_path = ‘C:\Users\86185\Desktop\picture’
#图片地址
destination_path = ‘/mnt/shared/Pictures/Screenshots’
#获取图片绝对路径
files = os.listdir(source_path)
image_files = [os.path.join(source_path, f) for f in files if f.endswith(‘.jpg’)]
#如果没有adb
#adbpath = ‘’
for image_file in image_files:
command = f’adb push {image_file} {destination_path}’
subprocess.run(command,shell=True)
print(“ok”)
需要清楚os以及subprocess库的内容