有没有办法可以将命令发送到 Windows 命令提示符 Python?
我想要做的是在桌面上制作一个 Python 应用程序,它通过套接字从另一台计算机/移动应用程序接收命令。
然后这些命令被传递到 Windows 命令提示符进行执行。
使用 Windows 7。
答案1
使用子进程模块
from subprocess import call
call(['cmd', 'arg1', 'arg2'], stdin='...', stdout='...')
例如:
call(['dir', '/W'])
点击此处了解更多子流程管理