@Uwe Raabe
Jetzt wird es abenteuerlich. Aber ja, hier ein Beispielcode:
Project1:
Delphi-Quellcode:
ReportMemoryLeaksOnShutdown := true;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
Unit1 implementation:
Delphi-Quellcode:
uses zip;
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
var
zip: TZipFile;
begin
zip := TZipFile.Create;
zip.Open('C:\Users\[...]\Desktop\ActuallyAdditions-1.12.2-r151-2.zip', zmRead);
zip.FileNames;
zip.Free;
end;