2017年9月7日 星期四

取得Service 檔案名稱

function TService1.fn_GetServiceFilenName:String;
var  strBuf: array[1..512] of Char;
  sFileName:String;
begin
  ZeroMemory(@strBuf, 512);
  GetModuleFileName(GetModuleHandle(nil), @strBuf, 512);
  sFileName := Trim(strBuf);
  Result := sFileName
  Result := ExtractFileDir(sFileName); //回傳路徑
end;

沒有留言:

張貼留言