使用USB电缆将手机连接到计算机时,可以检查与pyusb的连接。但是在程序中,我需要手机的完整路径。我的意思是,这就像pwd命令的输出。我可以通过pyusb做到吗?还是还有其他方法?
dev = usb.core.find(idVendor = VID, idProduct = PID)
if not dev:
print ("Couldn not find your Phone")
exit(1)
print("Connecting OK.")
...
dirPath = # blabla