如何使用python 3对文件执行上下文菜单操作

时间:2018-06-02 09:53:25

标签: python automation contextmenu pywinauto

如何对特定文件执行上下文菜单操作?
我设法打开资源管理器并使用pywinauto通过python获取文件列表。

在该文件中,我需要执行上下文菜单操作,是否可以通过pywinauto?

import pywinauto

path = "C:\\Users\\Vishnu\\Desktop\\DM-test\\"

pywinauto.Application().Start(r'explorer.exe')
explorer = pywinauto.Application().Connect(path='explorer.exe')
NewWindow = explorer.Window_(top_level_only=True, active_only=True,  class_name='CabinetWClass')
NewWindow.AddressBandRoot.ClickInput()
NewWindow.TypeKeys(path+'{ENTER}', with_spaces=True, set_foreground=False)

上面的代码将打开资源管理器并导航到目录。这是文件所需的上下文菜单操作:
this is the Context menu action required on the file

我设法找到了reg值并更改了我的代码以将该操作传递给文件,它完美无缺!!

pywinauto.Application().start(r'"C:\Program Files (x86)\Qualcomm\QCAT 6.x\Bin\QCAT.exe" -txt "{}"'.format(fileName))

1 个答案:

答案 0 :(得分:0)

Arrgh!没有人阅读文档......示例在主要自述文件中提供:MS UI Automation Example。对于你的情况,它应该是这样的:

# no need to type the path, explorer.exe has a cmd param for that
pywinauto.Application().start(r'explorer.exe "{}"'.format(path))

# backend is important!!!
app = Application(backend="uia").connect(path="explorer.exe")
NewWindow = explorer.Window_(top_level_only=True, active_only=True,  class_name='CabinetWClass')

file_item = NewWindow.ItemsView.get_item('dmlog20180517-121505slot0.dlf')
file_item.right_click_input()
app.ContextMenu["Convert to QCAT Text"].invoke()

# further actions depend on a process / dialog started...

有关后端的更多详细信息:Getting Started Guide