GetSystemEnvironment

Cette documentation ArcGIS 2.7 a été archivée et n’est plus mise à jour. Certains contenus et liens peuvent être obsolètes. Consultez la dernière version de la documentation.

Résumé

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

Discussion

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.

Syntaxe

GetSystemEnvironment (environment)
ParamètreExplicationType de données
environment

The name of the system environment variable.

String
Valeur renvoyée
Type de donnéesExplication
String

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

Exemple de code

GetSystemEnvironment example

Return the specified system environment variable value.

import arcpy

# Set the scratchWorkspace environment to the value returned
# from the system environment variable TEMP
arcpy.env.scratchWorkspace = arcpy.GetSystemEnvironment("TEMP")

Rubriques connexes


Dans cette rubrique