Zitat von
Alex_ITA01:
Ich habe schon versucht eine for schleife drum herum zu bauen die bis anzahl paramcount zählt aber das geht auch nicht.
Du musst auch bis Paramcount-1 zählen.
Delphi-Quellcode:
for i := 0 to paramcount-1 do
if FileExists(paramstr(i)) then FileList.Add(paramstr(i));
PS: Ich würde das in's Form.Create Ereigniss schreiben.