我使用py2exe创建了一个exe。但是,我能够打开我的exe的多个实例。我如何确保一次只运行一个exe实例。我注意到dropbox已经使用py2exe实现了这一点。
答案 0 :(得分:2)
这是最终有效的解决方案。 pywin32中提供的互斥锁完全符合要求。
from win32event import CreateMutex
from win32api import CloseHandle, GetLastError
from winerror import ERROR_ALREADY_EXISTS
class singleinstance:
""" Limits application to single instance """
def __init__(self):
self.mutexname = "testmutex_{D0E858DF-985E-4907-B7FB-8D732C3FC3B9}"
self.mutex = CreateMutex(None, False, self.mutexname)
self.lasterror = GetLastError()
def aleradyrunning(self):
return (self.lasterror == ERROR_ALREADY_EXISTS)
def __del__(self):
if self.mutex:
CloseHandle(self.mutex)