Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

progress 4gl OpenEdge abl delete file from directory

How can you delete a file from a directory using OpenEdge ABL (progress-4gl) code?

I cannot find any code samples that get close to exemplifying this problem. I know how to output to value(path), and to input from value(path), but how is a delete accomplished?

like image 437
Price Jones Avatar asked Apr 08 '26 18:04

Price Jones


1 Answers

You use the 4GL OS-DELETE statement.

OS-DELETE value( "filename" ).
like image 167
Tom Bascom Avatar answered Apr 11 '26 08:04

Tom Bascom