编辑评论
可能有更好的方法来做到这一点。
安装优秀的psutil
import psutil
excelPids = []
for proc in psutil.process_iter():
if proc.name == "EXCEL.EXE": excelPids.append(proc.pid)
现在枚举窗口,但获取窗口标题和 pid。
windowPidsAndTitle = []
win32gui.EnumWindows(lambda hwnd, resultList: resultList.append((win32gui.GetWindowThreadProcessId(hwnd),win32gui.GetWindowText(hwnd))), windowPidsAndTitle)
现在只需找到我们 excelPids 中的第一个 pid
for pid,title in windowPidsAndTitle:
if pid in excelPids:
return title
结束编辑
这里有很多事情需要考虑:
一个实例是否打开了多个工作簿?在这种情况下
xl = win32com.client.Dispatch("Excel.Application")
xl.ActiveWorkbook.FullName
确实会给你最后一个活动的工作簿。
或者是否有单独的 EXCEL.EXE 实例正在运行? You can get each instance with:
xl = win32com.client.GetObjec(None, "Excel.Application") #instance one
xl = win32com.client.GetObject("Name_Of_Workbook") #instance two
但这违背了目的,因为您需要知道名称,并且这不会告诉您最后一个焦点。
对于上面的@tgrays 评论,如果您的 excel 实例保证是前台窗口,那么:
import win32gui
win32gui.GetWindowText(win32gui.GetForegroundWindow())
#parse this and use GetObject to get your excel instance
但最坏的情况,多个实例,你必须找到最后一个焦点,你必须枚举所有窗口并找到你关心的那个:
windows = []
win32gui.EnumWindows(lambda hwnd, resultList: resultList.append(win32gui.GetWindowText(hwnd)),windows)
#enumerates all the windows open from the top down
[i for i in windows if "Microsoft Excel" in i].pop(0)
#this one is closest to the top
祝你好运!