procedure TForm1.Button1Click(Sender: TObject);
var
archivo : String;
begin
archivo := 'acceso.txt';
opendialog1.FileName := archivo;
opendialog1.Filter := 'Mis_Zips (*.txt)|Acc.txt';
if opendialog1.Execute then
if not fileexists('acc.txt') then
showmessage('no existe');
end;