delphi 检测进程是否存在函数


本文整理自网络,侵删。

 uses
TlHelp32;


function CheckTask(ExeFileName: string): Boolean; //检测XX进程是否存在函数
const
PROCESS_TERMINATE = $0001;
var
ContinueLoop: BOOL;
FSnapshotHandle: THandle;
FProcessEntry32: TProcessEntry32;
begin
result := False;
FSnapshotHandle := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
FProcessEntry32.dwSize := Sizeof(FProcessEntry32);
ContinueLoop := Process32First(FSnapshotHandle, FProcessEntry32);
while integer(ContinueLoop) <> 0 do begin
if ((UpperCase(ExtractFileName(FProcessEntry32.szExeFile)) = UpperCase(ExeFileName))
or (UpperCase(FProcessEntry32.szExeFile) = UpperCase(ExeFileName))) then
result := True;
ContinueLoop := Process32Next(FSnapshotHandle, FProcessEntry32);
end;
end;

相关阅读 >>

Delphi webbrowser1提取网页中的所有链接、点击第 n 个链接

Delphi tnethttpclient https忽略证书验证

Delphi 关于禁止程序重复启动的另一种需要与实现

Delphi 合并字符串的函数

Delphi 删除字符串中首个字符

Delphi共享软件防破解的实用招法

Delphi 取得dll所在目录

Delphi 带密匙的字符串加密解密函数(支持中文)

Delphi messagebox 使用

Delphi xe android/ios 手势介绍

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...