Two options to get the working directory

Question ID : 257
Created on 2016-02-01 at 3:50 AM
Author : Veryant Support [support@veryant.com]

Online URL : http://support.veryant.com/support/phpkb/question.php?ID=257



There are two library routines that allow to retrieve this information.

1. C$CHDIR called using a blank data-item

     initialize curr-dir.|curr-dir pic x(256).
     call  "C$CHDIR"  using  curr-dir.
     display "Current directory: " curr-dir. 

2. C$GETENV to get the user.dir Java property

     call "C$GETENV" using "user.dir" curr-dir.
     display "Current directory: " curr-dir. 



Back to Original Question