ListTools

Récapitulatif

Lists the geoprocessing tools, limited by name. A Python list is returned from the function.

Syntaxe

ListTools ({wild_card})
ParamètreExplicationType de données
wild_card

Un caractère générique limite les résultats renvoyés. Si aucun caractère générique n'est spécifié, toutes les valeurs sont renvoyées.

String
Valeur renvoyée
Type de donnéesExplication
String

The Python List returned from the function containing geoprocessing tool names, limited by the optional wild card.

Exemple de code

ListTools example

Lists all tools in the specified toolbox.

import arcpy

# Create a list of tools in the Analysis toolbox 
# 
tools = arcpy.ListTools("*_analysis") 

# Loop through the list and print each tool's usage.
# 
for tool in tools: 
    print arcpy.Usage(tool)

Rubriques connexes


7/10/2012