ListTools
サマリー
The ListTools function returns a list of geoprocessing tools.
構文
ListTools({wild_card})
| パラメーター | 説明 | データ タイプ |
|---|---|---|
|
wild_card |
Limits the results returned. If a value is not specified, all values are returned. The wildcard is not case sensitive. Use an asterisk (*) to represent zero or more characters. For example, |
String |
戻り値
| データ タイプ | 説明 |
|---|---|
|
String |
The list returned from the function containing geoprocessing tool names, optionally limited by the |
コードのサンプル
ListTools example
List 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))