在 python 中找不到 STARTF_USESHOWWINDOW
我正在尝试与这里的这个人做同样的事情: Cross-platform subprocess with隐藏窗口
但我的问题是子进程模块不包含 STARTF_USESHOWWINDOW。如果我理解得好的话,它已从 python 2.7 及更高版本中删除。
我该怎么做才能在 Python 2.7 中使用它,或者是否有使用 STARTF_USESHOWWINDOW 的替代方法?
谢谢。
I'm trying to do the same thing as this guy right here: Cross-platform subprocess with hidden window
But my problem is that subprocess module doesn't contain STARTF_USESHOWWINDOW. If I understand good it was removed from python 2.7 and above.
What can I do so I can use it in Python 2.7 or is there an alternative to using STARTF_USESHOWWINDOW ?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如此处所述,您可以在 Python 2.7 中使用 subprocess._subprocess.STARTF_USESHOWWINDOW。
As mentioned here, you can use subprocess._subprocess.STARTF_USESHOWWINDOW in Python 2.7.
STARTF_USESHOWINDOW
是 Windows 特定标志,因此您可以从win32con
中读取它。如果您没有安装该模块,您可以简单地自己定义它。STARTF_USESHOWWINDOW
is a Windows specific flag and so you can read it out ofwin32con
. If you don't have that module installed, you can simply define it for yourself.