0

我想使用格式化驱动器subprocess并让窗口命令提示符弹出以查看结果,但是这样做时:

subprocess.Popen(["FORMAT", drive, "/FS:FAT32", "/A:32K"], shell=True).communicate()

我收到此错误:

WindowsError: [Error 2] The system cannot find the file specified

有什么帮助吗?

4

1 回答 1

1
subprocess.Popen(["format.com", drive, "/FS:FAT32", "/A:32K"], shell=True).communicate()

您可以通过输入where FORMAT您的 cmd shell(不是 python shell ... obv。)

于 2012-09-12T17:09:16.507 回答