我使用os.system()来运行命令行:
os.system(PathIDM + ' /d ' + URL)
但它会引发错误:
'C:\Program' is not recognized as an internal or external command, operable program or batch file.
我如何解决它?
答案 0 :(得分:0)
引用PathIDM
,以便将程序路径识别为整体而不是C:\Program
部分:
os.system('"{}" /d {}'.format(PathIDM, URL))
或改为使用subprocess.call
:
import subprocess
subprocess.call([PathIDM, '/d', URL])