Can you help me with a problem solver in Delphi please![]()
Im trying to delete files from a folder (in my case the IE temp files). I know how to delete all files from a FileListbox, but how do you do it without this? I can use:
But thats not what i want, i just want to clean the IE temp crapCode:procedure TForm1.Button1Click(Sender: TObject); var i: Integer; begin for i:=0 to FileListBox1.Items.Count-1 do DeleteFile(FileListBox1.Items[i]); FileListBox1.Update; end;
Thanks





Reply With Quote