禁用附件 (Data Management)
用法
-
此工具会永久删除在地理数据库内部存储的、与“输入数据集”相关联的所有附件。如果在禁用后启用了附件,则不会显示以前与要素类或表相关联的任何附件。
如果地理数据库要素类或表未启用附件,则将发出警告消息,且不进行处理。
语法
DisableAttachments_management (in_dataset)
参数 | 说明 | 数据类型 |
in_dataset |
将禁用附件的地理数据库表或要素类。输入的表或要素类必须处于 10 或更高版本的地理数据库中。 | Table View |
代码实例
DisableAttachments 示例(Python 窗口)
以下代码片段说明了如何在 Python 窗口中使用 DisableAttachments 工具。
import arcpy
arcpy.DisableAttachments_management(r"C:\Data\City.gdb\Parcels")
DisableAttachments 示例(独立 Python 脚本)
以下脚本说明了如何在独立脚本中使用 DisableAttachments 工具。
## GDB Attachments are no longer required, so disable attachments on the input dataset
import arcpy, os, sys
# set the geoprocessing workspace to the feature dataset LandRecord in the geodatabase City.gdb
arcpy.env.workspace = r"C:\Data\City.gdb\LandRecord"
input = "Parcels"
# use DisableAttachments to delete all attachment files from the gdb and disable attachment handling
try:
arcpy.DisableAttachments_management(input)
except:
print arcpy.GetMessages(2)
环境
相关主题
许可信息
ArcGIS for Desktop Basic:否
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013