Activer les pièces jointes (Gestion des données)

Niveau de licence :BasicStandardAdvanced

Récapitulatif

Active des pièces jointes sur une classe d'entités de géodatabase ou une table. Crée la classe de relations de pièces jointes nécessaire et table de pièces jointes qui stockeront les fichiers de pièce jointe en interne.

Utilisation

Syntaxe

EnableAttachments_management (in_dataset)
ParamètreExplicationType de données
in_dataset

Table ou classe d'entités de géodatabase pour laquelle les pièces jointes sont activées. L'entrée doit se trouver dans une géodatabase version 10 ou ultérieure.

Table View

Exemple de code

Exemple d'utilisation de la fonction EnableAttachments (fenêtre Python)

L'extrait de code suivant illustre l'utilisation de l'outil EnableAttachments dans la fenêtre Python.

import arcpy
arcpy.EnableAttachments_management(r"C:\Data\City.gdb\Parcels")
Exemple d'utilisation de la fonction EnableAttachments (script Python autonome)

Le script suivant illustre l'utilisation de l'outil EnableAttachments dans un script autonome.

"""
Example: we have a folder of digital photographs of vacant homes; the photos
are named according to the ParcelID of the house in the picture. Let's add
these photos to a parcel feature class as attachments.
"""

import csv
import arcpy
import os
import sys

input = r"C:\Data\City.gdb\Parcels"
inputField = "ParcelID"
matchTable = r"C:\Data\matchtable.csv"
matchField = "ParcelID"
pathField = "Picture" 
picFolder = r"C:\Pictures"

try:
    # create a new Match Table csv file
    writer = csv.writer(open(matchTable, "wb"), delimiter=",")

    # write a header row (the table will have two columns: ParcelID and Picture)
    writer.writerow([matchField, pathField])

    # iterate through each picture in the directory and write a row to the table
    for file in os.listdir(picFolder):
        if str(file).find(".jpg") > -1:
            writer.writerow([str(file).replace(".jpg", ""), file])

    del writer

    # the input feature class must first be GDB attachments enabled
    arcpy.EnableAttachments_management(input)

    # use the match table with the Add Attachments tool
    arcpy.AddAttachments_management(input, targetField, matchTable, matchField, pathField, picFolder)
except:
    print arcpy.GetMessages(2)

Environnements

Thèmes connexes

Informations de licence

ArcGIS for Desktop Basic: Annuler
ArcGIS for Desktop Standard: Oui
ArcGIS for Desktop Advanced: Oui
6/5/2014