728x90
반응형
[Files]
Source: unzip.exe; DestDir: {userappdata}\testFolder; AfterInstall: Unzip
Source: testFile.zip; DestDir: {userappdata}\testFolder
[Code]
procedure Unzip;
var
path: string;
ResultCode: Integer;
begin
path := ExpandConstant('{userappdata}') + '\testFolder\'
Exec(path + 'unzip.exe', '-u ' + path + 'testFile.zip', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
end;
728x90
반응형
'삽질 > Delphi' 카테고리의 다른 글
[Delphi] 중국어 번체<->간체 (0) | 2019.06.14 |
---|---|
[Delphi] 듀얼모니터에 폼 띄우기 (0) | 2018.01.09 |
[Delphi] InnoSetup : 설치 시 강제로 프로세스 죽이기 (0) | 2017.10.02 |
[Delphi] Embeddedwb에서 Post로 보내기, User-Agent 보내기 (0) | 2016.10.18 |
[Delphi] InnoSetup : 설치 전, 설치 후 함수 호출하기 (0) | 2013.08.07 |
댓글