ListToolboxes (arcpy)

サマリ

Lists the geoprocessing toolboxes, limited by name.

構文

ListToolboxes ({wild_card})
パラメータ説明データ タイプ
wild_card

The wild_card limits the results returned. If no wild_card is specified, all values are returned.

String
戻り値
データ タイプ説明
String

The list returned from the function containing geoprocessing toolbox names, limited by the optional wild card.

コードのサンプル

ListToolboxes example

Lists specified toolboxes.

import arcpy

# Get and print a list of all toolboxes.
toolboxes = arcpy.ListToolboxes()

for toolbox in toolboxes:
    print(toolbox)

関連トピック

4/26/2014