在 python 中找不到 STARTF_USESHOWWINDOW

发布于 2024-10-28 04:57:56 字数 316 浏览 2 评论 0原文

我正在尝试与这里的这个人做同样的事情: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡水深流 2024-11-04 04:57:56

正如此处所述,您可以在 Python 2.7 中使用 subprocess._subprocess.STARTF_USESHOWWINDOW。

As mentioned here, you can use subprocess._subprocess.STARTF_USESHOWWINDOW in Python 2.7.

幽梦紫曦~ 2024-11-04 04:57:56

STARTF_USESHOWINDOW 是 Windows 特定标志,因此您可以从 win32con 中读取它。如果您没有安装该模块,您可以简单地自己定义它。

STARTF_USESHOWWINDOW is a Windows specific flag and so you can read it out of win32con. If you don't have that module installed, you can simply define it for yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文