如何通过Windows右键单击上下文菜单将多个参数传递给python程序
我有一个 python 程序,它使用 py2exe 转换为 Windows exe。我还将它添加到 Windows 上下文菜单中。基本上,当右键单击任何文件时,会出现另一个选项,其中包含指向我的 exe 的链接。
问题是,当我选择多个文件时,程序的多个实例都会启动。
有没有办法将多个参数传递给exe?
谢谢, 斯里德哈尔。
I have a python program which is converted to a windows exe using py2exe. I have also added it to the windows context menu. Basically when one right-clicks on any file another option appears with a link to my exe.
The problem is, when I select multiple files, multiple instances of my program starts up.
Is there any way to pass multiple arguments to the exe?
Thanks,
Sreedhar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您手动将该 exe 添加到 Windows 上下文菜单中,那么您就手动完成了困难的步骤。您正在寻找的是 py2exe 处理 Windows Shell 上下文菜单,这不是一个简单的步骤,我怀疑是否可以使用 py2exe 本身,因为我找不到文档或互联网中的引用。
If you add that that exe to windows context menu manually, then you did the hard step manually. What are you looking for is ability for py2exe to handle the Windows Shell Context Menu, that is not a trivial step and I doubt if it is possible using py2exe itself as I could find no references to in the docs or in the internet.