mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
修改quit()逻辑
This commit is contained in:
parent
193049428d
commit
45f8c38a75
@ -188,6 +188,14 @@ def stop_process_on_port(port, pid=None):
|
|||||||
:param pid: 进程号
|
:param pid: 进程号
|
||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
|
if pid:
|
||||||
|
try:
|
||||||
|
for p in Process(pid).children():
|
||||||
|
p.terminate()
|
||||||
|
Process(pid).terminate()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
for proc in process_iter(['pid', 'connections']):
|
for proc in process_iter(['pid', 'connections']):
|
||||||
try:
|
try:
|
||||||
connections = proc.connections()
|
connections = proc.connections()
|
||||||
@ -202,16 +210,6 @@ def stop_process_on_port(port, pid=None):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"{proc.pid} {port}: {e}")
|
print(f"{proc.pid} {port}: {e}")
|
||||||
|
|
||||||
if pid:
|
|
||||||
for p in Process(pid).children():
|
|
||||||
try:
|
|
||||||
p.terminate()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
Process(pid).terminate()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
def configs_to_here(save_name=None):
|
def configs_to_here(save_name=None):
|
||||||
"""把默认ini文件复制到当前目录
|
"""把默认ini文件复制到当前目录
|
||||||
|
Loading…
x
Reference in New Issue
Block a user