Returns the contents of the specified MS-DOS environment variable.
GETENV(cVariableName) |
Parameters
- cVariableName
- Specifies the name of the environment variable. The empty string is returned if the environment variable you specify doesn't exist. You can locate the Windows directory with the WINDIR environmental variable, which Windows sets when it starts.
Return Value
Character
Remarks
Two environment variables are always available: COMSPEC and PATH. You can create your own environment variables with the command shell SET command.
For additional information on creating environment variables, see the Windows product documentation.
Example
В | Copy Code |
---|---|
CLEAR ? GETENV('PATH') && Displays the search path |