ListTools (arcpy)

Resumen

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

Sintaxis

ListTools ({wild_card})
ParámetroExplicaciónTipo de datos
wild_card

El comodín limita los resultados que se obtienen. Si no se especifica ningún comodín, se obtienen todos los valores.

String
Valor de retorno
Tipo de datosExplicación
String

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

Ejemplo de código

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)

Temas relacionados

9/11/2013