DLC directory

Kalan

Member
I want to get the progress installed directory path. I tried with get-env('DLC') but I think it will not be right approach. Please suggest.
 
Presumably you mean that you were using OS-GETENV( "DLC" ).

Why would you think that that isn't correct?

You might also want to take a look at the propath variable.
 
Because os-getenv('DLC') returns '?'.
As per progress help, If the environment variable is not defined, this statement returns a question mark (?).
 
How is it that you are starting Progress without having DLC defined? Is this Windows?

In any event...
Code:
display entry( num-entries( propath ), propath ) format "x(30)".
Remove the "/bin" if need be.
 
Back
Top