실행파일 종료시 실행파일 삭제
procedure DeleteMe;
var
BatchFile:TextFile;
BatchFileName:String;
ProcessInfo:TProcessInformation;
StartUpInfo:TStartupInfo;
begin
BatchFileName:=ExtractFilePath(application.exename)+'$$336699.bat';
AssignFile(BatchFile, BatchFileName);
Rewrite(BatchFile);
Writeln(BatchFile, ':try');
Writeln(BatchFile, 'del "' + application.exename + '"');
Writeln(BatchFile, 'if exist "' + application.exename + '"' + ' goto try');
Writeln(BatchFile, 'del "' + BatchFileName + '"');
CloseFile(BatchFile);
FillChar(StartUpInfo, SizeOf(StartUpInfo), $00);
StartUpInfo.dwFlags := STARTF_USESHOWWINDOW;
StartUpInfo.wShowWindow := SW_HIDE;
if CreateProcess(nil, PChar(BatchFileName), nil, nil,False,
IDLE_PRIORITY_CLASS, nil, nil, StartUpInfo, ProcessInfo) then
begin
CloseHandle(ProcessInfo.hThread);
CloseHandle(ProcessInfo.hProcess);
end;
//Close;
end;
====================================
procedure TForm1.Button1Click(Sender: TObject);
begin
DeleteMe;
Close;
end;
'Delphi > 프로시저-함수' 카테고리의 다른 글
HEX 코드를 TColor 값으로 변환하여 반환 (0) | 2024.04.29 |
---|---|
FindWindowEx로 찾지못하는 원도우 핸들구하기 (0) | 2024.03.23 |
숫자에 콤마 찍어주기 (0) | 2024.03.09 |
윈도우에 폰트 설치/제거 하기 (0) | 2024.03.05 |
Delphi Open ToolsAPI (3) (0) | 2023.12.26 |
댓글