标签: python
我正在尝试编写一个脚本,随时检查USB闪存驱动器的存在。为此,我使用命令lsusb -f的open方法。它运行良好,直到一段时间后,我收到错误too many files open,我不知道如何处理它。
lsusb -f
too many files open
proc1=os.popen("lsusb -f") nombre=proc1.read() proc1.close()
我只想从lsusb -f命令构建一个列表并处理数据。