Jun 12, 2002 #1 poupou Programmer Jun 12, 2002 6 CA I would like to know how can I look if some file exist with FoxPro6. With VB6 I can with: If fs.exist(PATH) then fs.delete(PATH) else *nothing end if but is't possible with FoxPro Thanks Redg
I would like to know how can I look if some file exist with FoxPro6. With VB6 I can with: If fs.exist(PATH) then fs.delete(PATH) else *nothing end if but is't possible with FoxPro Thanks Redg
Jun 12, 2002 #2 sheronne Programmer Jun 1, 2001 71 US IF FILE('filename (can include path)') DO SOMETHING ELSE DO SOMETHING ELSE ENDIF Upvote 0 Downvote