问题描述
MyScript.py
:
from tkinter import *
from tkinter import filedialog
import sys
root = Tk()
def open_file(file_to_open):
if file_to_open != "":
file = open(file_to_open,'r')
text.delete('1.0',END)
text.insert('1.0',file.read())
file.close()
text = Text(root,width = 65,height = 20,font = "consolas 14")
text.pack()
open_button = Button(root,text = "Open",command = lambda: open_file(filedialog.askopenfilename()))
open_button.pack()
if len(sys.argv) > 1:
open_file(sys.argv[1])
mainloop()
launcher.bat
:
@echo off
python MyScript.py %1
在这里,我想在 Windows 资源管理器的右键菜单中添加一个命令/子菜单,每当点击该子菜单时,我想运行 launcher.bat
文件。>
有没有办法在python中实现这一点?
如果有人能帮助我就好了。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)