Add File (Production Mapping)

许可等级:BasicStandardAdvanced

摘要

Adds a file to a Product Library. This associates the file with a Product Library entry. Once you have added a file to a Product Library, use Check Out File and Check In File to manage changes made to it.

A product library stores information and data required for cartographic and digital data production in a geodatabase. Esri 制图和制表解决方案 store business rules, documents, and spatial information inside a product library.

用法

语法

PLAddFile_production (product_library_workspace, product_library_itempath, filepath, {checkin_comments}, {product_library_ownername})
参数说明数据类型
product_library_workspace

Path to the product library workspace.

Workspace
product_library_itempath

The product library path to the item. This is specified as Solution Name::Product Class Name::Series Name::Product Name::Instance Name::AOI Name::File Name.

String
filepath

Path to the file that is going to be added to the Product Library.

File
checkin_comments
(可选)

Comments to associate with the check–in.

String
product_library_ownername
(可选)

Product library schema owner name. Set this parameter if the user account specified in product_library_workspace is not the schema owner. This applies only to product libraries stored in enterprise geodatabases.

String

代码实例

PLAddFile example (Python window)

The following Python window script demonstrates how to use the PLAddFile tool.

# Name: PLAddFile_Example.py
# Description: Adds a file to a Product Library
# Requirements: Production Mapping extension

# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")

# Product library and item path variables
product_library_workspace = "C:\\Data\\ProductLibrary.gdb"
product_library_itempath = "Products::NewSolution::NewClass::NewSeries"

# path to an existing file
file_path = "c:\\data\\script.py"

# execute the Add File tool
try:
    res = arcpy.PLAddFile_production(product_library_workspace, product_library_itempath,file_path)
    print res.getMessages()

except Exception, e:
    print e.message
	
print "Script completed successfully."

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 需要 Production Mapping
ArcGIS for Desktop Advanced: 需要 Production Mapping
4/27/2014