我想找出一個更簡單的版本來檢查是否有任何USB設備插入,所以我試圖迭代計算機的內容。但是我無法找到[我的計算機的路徑,所以我只是嘗試了以下內容:如何使用Python知道計算機(Windows 7)的內容?
import os
contents = os.listdir("Computer")
但程序拋出一個錯誤:
Traceback (most recent call last):
File "C:/Python33/usb.py", line 3, in <module>
folder = os.listdir("Computer")
FileNotFoundError: [WinError 3] The system cannot find the path specified:
'Computer\\*.*'
誰能告訴我,我怎樣才能解決這個問題?
「Computer」是一個文件夾名? – Marcin 2015-03-31 05:55:54
它相當於我的電腦在Windows 7 – pyUser 2015-03-31 05:56:44
您可能想看看這篇文章:http://stackoverflow.com/questions/8110310/simple-way-to-query-connected-usb-devices-info- in-python – AChampion 2015-03-31 05:57:01