ATXINFO |
atxinfo used find all the characteristics in a process found in the archive. The additional argument specifies that it is the required characteristic.
atxinfo( mach, appli, process, arg_ent )
|
Element |
Description |
Restrictions |
|
mach |
alphanumeric expression giving the name of a remote machine |
Adonix server |
|
appli |
- Numeric expression describing a reference application, or |
- 1 < = appli < = 8 |
|
proc |
Name of the process |
maximum 12 characters |
|
arg_ent |
Expressioninteger specifying the characteristic to be found. |
0 < = arg_ent < = 20 |
# Find the size of the TRT1 process in number of bytes.
# If the size found is negative, the file is non existentSIZE_TRT = atxinfo("","","TRT1",7)
# Does the process TRT1 exist in the DEMO folder ?
EXIST_TRT = atxinfo("","DEMO","TRT1",0)
The function atxinfo is used find all the characteristics in a process compiled in the archive. It gives an argument that specifies the characteristic being searched for. The correspondence between the argument and the characteristic is given in the grid below :
|
argument |
characteristic of the process |
part. plateform |
| 0 | Existence (0 : no, 1 : yes) | |
| 5 | User name linked to the process | UNIX only |
| 7 | Size in bytes | |
| 9 | Last modification date (in seconds from 01/01/1970 0:0:0:GMT). | |
| 20 | Comment associate with the process |
If the machine or the application are not entered, the system takes the current machine and folder.