Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Check if a file exists
Use FileExists function. If file exists, then this function will return True.
procedure TForm1.Button1Click(Sender: TObject);
begin
if FileExists(Edit1.Text) then
ShowMessage('File already exists!')
else
ShowMessage('This file is unique');
end;
- Related components
- TFileSearch
- TFolderMonitor
- TFileVersion
-
More for developers