Python - How to detect when user closes a console application via “X” button

懵懂的女人 提交于 2019-11-28 08:26:09

问题


I currently have a Console based python program running under windows. The program maintains most of its data in memory and periodically saves the data to disk, or when the user shuts the application down via a Keyboard interrupt (Ctrl + C) event.

The problem i have is that when a user hits the "X" button at the top right of the console window, the session closes and the data in memory is lost. What i am looking for is an event/signal or hook so that i can clean up the memory before closing down.

I am hoping to do this without any external libraries, though if this is not possible i'd still like to know how it can be done.


回答1:


In windows

if you are using pywin32, you can perform an event before the console is closed, I'm not sure this will tell you who or what is closing it, but maybe this gets you half way. You might also want to check out: Prevent a console app from closing ...

import atexit, os
  atexit.register(lambda: os.system("pause"))

For those who come across this and use Linux...

the SIGHUP signal is thrown (signal hang up) when you close an SSH session/window.

import signal

signal.signal( signal.SIGHUP, handler )

def handler(signum, frame):
  #this is called when the terminal session is closed
  #do logic before program closes
  pass


来源:https://stackoverflow.com/questions/5334614/python-how-to-detect-when-user-closes-a-console-application-via-x-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!