Clicky

Fortran Wiki
get_environment_variable (Rev #2)

Skip the Navigation Links | Home Page | All Pages | Recently Revised | Authors | Feeds | Export |

Description

Get the value of the environmental variable name.

Standard

Fortran 2003 and later

Class

Subroutine

Syntax

call get_environment_variable(name[, value, length, status, trim_name)

Arguments

  • name - Shall be a scalar of type character(1).
  • value - Shall be a scalar of type character(1).
  • length - Shall be a scalar of type integer(4).
  • status - Shall be a scalar of type integer(4).
  • trim_name - Shall be a scalar of type logical(4).

Return value

Stores the value of name in value. If value is not large enough to hold the data, it is truncated. If name is not set, value will be filled with blanks. Argument length contains the length needed for storing the environment variable name or zero if it is not present. status is -1 if value is present but too short for the environment variable; it is 1 if the environment variable does not exist and 2 if the processor does not support environment variables; in all other cases status is zero. If trim_name is present with the value .false., the trailing blanks in name are significant; otherwise they are not part of the environment variable name.

Example

program test_getenv
 character(len=255) :: homedir
 call get_environment_variable("home", homedir)
 write (*,*) trim(homedir)
end program

category: intrinsics

Revision from April 30, 2009 22:47:57 by Jason Blevins
Forward in time (to current) | Back in time (1 more) | See current | See changes | History | Rollback | View: Source | Linked from: Intrinsic procedures, OS integration

AltStyle によって変換されたページ (->オリジナル) /