当前位置:编程学习 > python >>

利用python管理windows进程

#单独获取当前目录名 
import os 
def name(): 
    return os.path.split(os.getcwd())[-1] 

#WIN关闭一个进程 
import ctypes 
def kill(pid): 
    """kill function for Win32""" 
    kernel32 = ctypes.windll.kernel32 
    handle = kernel32.OpenProcess(1, 0, pid) 
    #使用termina函数结束进程 
    return (0 != kernel32.TerminateProcess(handle, 0)) 
作者:puluto
补充:Web开发 , Python ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,