我正在爲Windows 7創建一個Python 3程序,以便在CD上搜索安裝可執行文件的通用名稱並運行它。我試過使用多個os.path.exists,但是當它找到正確的文件時,它會打印出它找不到其他可能的文件名。 請幫忙!在Python中搜索某些文件的其他驅動器3
if os.path.exists("D:/autorun.exe"):
os.startfile("D:/autorun.exe")
else:
print("Failed Attempt!")
if os.path.exists("D:/Install.exe"):
os.startfile("D:/Install.exe")
else:
print("Failed Attempt!")
if os.path.exists("D:/AutoRun.exe"):
os.startfile("D:/AutoRun.exe")
else:
print("Failed Attempt!")
if os.path.exists("D:/install.exe"):
os.startfile("D:/install.exe")
else:
print("Failed Attempt!")
我真的不知道該怎麼做! –
添加了有問題的代碼! –
你能告訴我一個如何使用它的例子嗎? –