描述
将一个或多个工具箱(.tbx 或 .pyt 文件)合并到指定的输出文件夹中。
使用方法
在已安装的 ArcGIS Pro 版本和版本参数选择的版本之间可能已添加、移除或修改了一些工具和参数。如果您希望将工具箱合并到较早版本,且其中包含仅在较新版本中可用的功能,则工具会通过比较包中包含的一个或多个工具的版本兼容性来生成警告或错误消息。
语法
ConsolidateToolbox(in_toolbox, output_folder, {version})
参数 | 说明 | 数据类型 |
in_toolbox [in_toolbox,...] | 要合并的工具箱。 | Toolbox |
output_folder | 将包含合并工具箱的输出文件夹。 如果指定的文件夹不存在,将创建一个新文件夹。 | Folder |
version (可选) | 指定合并工具箱的版本。指定版本可实现与之前版本的 ArcGIS 共享工具箱,并可支持向后兼容。
| String |
代码示例
以下 Python 窗口脚本演示了如何在 Python 窗口中使用 ConsolidateToolbox 工具。
import arcpy
arcpy.ConsolidateToolbox_management(r'C:\data\BufferPoints.tbx',
r'C:\project\Buffer_Pnts', "CURRENT")
查找位于指定文件夹中的所有工具箱,然后分别为这些工具箱创建独立的合并文件夹。
# Name: ConsolidateToolboxEx2.py
# Description: Find all the toolboxes that reside in a specified folder and
# create a consolidated folder for each.
# import system modules
import os
import arcpy
# Set environment settings
arcpy.env.overwriteOutput = True
arcpy.env.workspace = "C:/Toolboxes"
# Loop through the workspace, find all the toolboxes (.tbx), and create a
# consolidated folder for each toolbox found using the same name as the original
# toolbox.
for tbx in arcpy.ListFiles("*.tbx"):
print("Consolidating " + tbx)
arcpy.ConsolidateToolbox_management(tbx, os.path.splitext(tbx)[0], "CURRENT")
环境
此工具不使用任何地理处理环境。
许可信息
- Basic: 是
- Standard: 是
- Advanced: 是