ATT962062 -- command |
 |
|
30 Apr 2003 | |
 |


|
/**********************************************************/
/* */
/* Command: OBJEXISTS */
/* Purpose: Test object existence using path name */
/* Notes: The first parameter is the full path name */
/* of an object, the second is a logical status */
/* code - TRUE means object exists. */
/* */
/* Command may be used only in programs or REXX */
/* procedures. */
/* */
/**********************************************************/
CMD PROMPT('Check object link')
PARM KWD(PATHNAME) TYPE(*PNAME) LEN(512) MIN(1) +
VARY(*YES *INT2) PROMPT('Object to check')
PARM KWD(RETURN) TYPE(*LGL) RTNVAL(*YES) +
PROMPT('Object exists')
');
// -->
|
 |
|
 |