GetSystemEnvironment (arcpy)

Zusammenfassung

Gets the specified system environment variable value, such as "TEMP".

Diskussion

When using GetSystemEnvironment to retrieve the "TEMP" environment variable's value, GetSystemEnvironment will cycle through "TEMP", "TMP" and "MW_TMPDIR" environment variables and return the first value it finds.

Syntax

GetSystemEnvironment (environment)
ParameterErläuterungDatentyp
environment

The name of the system environment variable.

String
Rückgabewert
DatentypErläuterung
String

Returns the value of the specified system environment variable as a string.

Codebeispiel

GetSystemEnvironment example

Return the specified system environment variable value.

import arcpy
from arcpy import env

# Get the system TEMP variable value
# 
environment = arcpy.GetSystemEnvironment("TEMP")

# Set the scratchWorkspace environment variable value
#   to the value returned from the system environment variable TEMP
env.scratchWorkspace = environment

Verwandte Themen

9/11/2013