Jun 5, 2002 #1 nasserz Technical User May 25, 2002 7 US I tried: run "delete s:\onight\eod_*" and Prog = "delete s:\onight\eod_*" run Prog Neither worked! Thanks!
I tried: run "delete s:\onight\eod_*" and Prog = "delete s:\onight\eod_*" run Prog Neither worked! Thanks!
Jun 5, 2002 #2 frda Technical User Feb 14, 2002 25 BE Just use delfile "s:\onight\eod_*" or define a string with your file in and then use: delfile string Upvote 0 Downvote
Just use delfile "s:\onight\eod_*" or define a string with your file in and then use: delfile string
Jun 6, 2002 #3 hankm3 Programmer Jan 27, 2002 284 US Hello, As a Safeguard, use ISFILE to see if the File Exists and then Delete it. if isfile "s:\onight\eod_*" delfile "s:\onight\eod_*" else termwrites "NO File to Delete" endif Hank Upvote 0 Downvote
Hello, As a Safeguard, use ISFILE to see if the File Exists and then Delete it. if isfile "s:\onight\eod_*" delfile "s:\onight\eod_*" else termwrites "NO File to Delete" endif Hank