matt23lucier
MIS
In progress (9.1e) how do you check if the following file exists, c:\temp\customer.txt. Does anyone know how to do this?
Thanks
Matt
Thanks
Matt
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DEF VAR v-banner-test AS CHARACTER EXTENT 6 FORMAT "x(76)" NO-UNDO.
INPUT THROUGH DIR banner.dat NO-ECHO.
SET v-banner-test[1].
SET v-banner-test[2].
SET v-banner-test[3].
SET v-banner-test[4].
SET v-banner-test[5].
SET v-banner-test[6].
INPUT CLOSE.
IF v-banner-test[6] MATCHES "*banner*" THEN DO:
/* do stuff here when banner.dat exists */
END.