<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Copy attribute table fields from one shapefile to another in New to GIS Questions</title>
    <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187422#M476</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For what it's worth, running the built-in feature class level tools (Copy, then Append) seems to work about twice as fast as adding fields individually. See below where Test A uses feature class level tools and Test B uses field level tools (I believe these are comparing apples to apples, but I could be wrong). For small feature classes, the differences are pretty small, but for large datasets, the time difference could be considerable. I'd say the code is somewhat simpler, as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, time

# Set up shared conditions
arcpy.env.workspace = r'C:\junk\new_fields'
arcpy.env.overwriteOutput = True
template = 'template.shp' # the template FC
fcs = arcpy.ListFeatureClasses('*Copy*') # the "other" FCs

#############################################

# Test A
starttime1 = time.time()

outCounter = 1
for fc in fcs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; newCopy = "output_" + str(outCounter) + '.shp'
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Copy_management(template, newCopy)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Append_management(fc, newCopy, 'NO_TEST')
&amp;nbsp;&amp;nbsp;&amp;nbsp; outCounter += 1

endtime1 = time.time() - starttime1
print 'Total time: ' + str(endtime1) +'s' # about 3.5 seconds

############################################

# Test B
starttime2 = time.time()

fields = arcpy.ListFields(template)
allfields = []
for field in fields:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if field.name != 'FID' and field.name != 'Shape':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; allfields.append([field.name , field.type , field.precision , field.scale, field.length, field.aliasName , field.isNullable , field.required])
for shape in fcs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for field in allfields:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management(shape , field[0] , field[1] , field[2], field[3], field[4] , field[5], field[6] , field[7])

endtime2 = time.time() - starttime2
print 'Total time: ' + str(endtime2) +'s' # about 7 seconds&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 09:29:11 GMT</pubDate>
    <dc:creator>DarrenWiens2</dc:creator>
    <dc:date>2021-12-11T09:29:11Z</dc:date>
    <item>
      <title>Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187414#M468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have about 20 shapefiles that all need to have the same attribute table fields.&amp;nbsp; I have the attribute table fields all setup the way I want for one of the shapefiles.&amp;nbsp; I want to copy this attribute table setup over to the other shapefiles.&amp;nbsp; The entries of the tables are all empty for now, I just want to use the same columns/fields for all the shapefiles.&amp;nbsp; How can I copy the attribute table into the remaining shapefiles?&amp;nbsp; Using ArcInfo 10.0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:04:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187414#M468</guid>
      <dc:creator>KeithAddison1</dc:creator>
      <dc:date>2015-09-09T20:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187415#M469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a common field that you can use to to join the two feature classes or are you going to need to do a spatial join to link the data? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:07:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187415#M469</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-09-09T20:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187416#M470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only field they all have in common is SHAPE (all polygons), can I use that for a join?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:17:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187416#M470</guid>
      <dc:creator>KeithAddison1</dc:creator>
      <dc:date>2015-09-09T20:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187417#M471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are comfortable with python, you could make a list of all the fields of the one (template) shapefile you have set-up, then loop through each other shapefile and add a field for each field that exists in the template shapefile. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the way you want to go about it and you need help with this, I can get you some code to use to manage this process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:18:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187417#M471</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-09-09T20:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187418#M472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could:&lt;/P&gt;&lt;P&gt;1.) &lt;A href="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#/Copy/001700000051000000/"&gt;Copy &lt;/A&gt;your template shapefile&lt;/P&gt;&lt;P&gt;2.) &lt;A href="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#/Append/001700000050000000/"&gt;Append &lt;/A&gt;the features from one of 20 shapefiles to the copy (Schema type = NO_TEST)&lt;/P&gt;&lt;P&gt;...and repeat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:19:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187418#M472</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-09-09T20:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187419#M473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use a spatial join the fields from both feature classes would be present in a new feature class, but i don't think that will do what you are after. i miss read your question sorry. I would suggest using model builder set it up for each of&amp;nbsp; the fields you want to add on one feature class and let it run then change the feature class to another and run it again until you get all 20&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:54:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187419#M473</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-09-09T20:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187420#M474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I figured out a workaround by merging all the shapefiles together then setting up the attribute table &amp;amp; breaking each feature back out into its individual shapefile.&amp;nbsp; Not ideal but takes less time than entering each field for all 20 shapefiles.&amp;nbsp; Can't believe I didn't think of that sooner, I guess that's because I assumed there would be an easy way to copy/paste attribute table templates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am learning Python so I would be interested in seeing code to do this for some arbitrary field names, say: A, B &amp;amp; C.&amp;nbsp; It could also come in handy if I run into this situation again for a great many shapefiles and I can't come up with a workaround.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 21:02:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187420#M474</guid>
      <dc:creator>KeithAddison1</dc:creator>
      <dc:date>2015-09-09T21:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187421#M475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is far from an ideal solution, since I am uncomfortable with dictionaries, I make a list of lists that contain the attributes for existings fields using the arcpy module.&amp;nbsp; In the below example, your "template" shapefile needs to be in a seperate directory from the rest, since this script does not check to see if a field already exists.&amp;nbsp; If your other shapefiles were in multiple directories or subdirectories, we would need to use the os module walk function, or arcpy.da.Walk to create the list of shapes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not have data to test on at the moment, so this is untested and I can't show the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#importing Modules
import arcpy
#Creating variable for template file path
template_shp = "FilePathtoShp"
#Making a list of Field Objects
fields = arcpy.ListFields(template_shp)
#Creating empty list to append field attribute list to
allfields = []
#Looping through field objects
for field in fields:
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Creating empty list to append field attributes to
&amp;nbsp;&amp;nbsp;&amp;nbsp; field_attributes = []
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Appending all relevant field object elements as strings to list
&amp;nbsp;&amp;nbsp;&amp;nbsp; field_attributes.append(field.name , field.type , field.precision , field.scale, field.length, field.aliasName , field.isNullable , field.required)
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Appending list of field elements to new field list
&amp;nbsp;&amp;nbsp;&amp;nbsp; allfields.append(field_attributes)
#Setting workspace
arcpy.env.workspace = "directoryofshapefiles"
#Creating List of FeatureClasses in workspace
shapes = arcpy.ListFeatureClasses()
#Looping through each shape
for shape in shapes:
&amp;nbsp;&amp;nbsp;&amp;nbsp; #Looping through each field 
&amp;nbsp;&amp;nbsp;&amp;nbsp; for field in allfields:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Adding field based on field attributes of original field
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management(shape , field[0] , field[1] , field[2], field[3], field[4] , field[5], field[6] , field[7])&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure someone more proficient with python could show a better way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:29:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187421#M475</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2021-12-11T09:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187422#M476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For what it's worth, running the built-in feature class level tools (Copy, then Append) seems to work about twice as fast as adding fields individually. See below where Test A uses feature class level tools and Test B uses field level tools (I believe these are comparing apples to apples, but I could be wrong). For small feature classes, the differences are pretty small, but for large datasets, the time difference could be considerable. I'd say the code is somewhat simpler, as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, time

# Set up shared conditions
arcpy.env.workspace = r'C:\junk\new_fields'
arcpy.env.overwriteOutput = True
template = 'template.shp' # the template FC
fcs = arcpy.ListFeatureClasses('*Copy*') # the "other" FCs

#############################################

# Test A
starttime1 = time.time()

outCounter = 1
for fc in fcs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; newCopy = "output_" + str(outCounter) + '.shp'
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Copy_management(template, newCopy)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Append_management(fc, newCopy, 'NO_TEST')
&amp;nbsp;&amp;nbsp;&amp;nbsp; outCounter += 1

endtime1 = time.time() - starttime1
print 'Total time: ' + str(endtime1) +'s' # about 3.5 seconds

############################################

# Test B
starttime2 = time.time()

fields = arcpy.ListFields(template)
allfields = []
for field in fields:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if field.name != 'FID' and field.name != 'Shape':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; allfields.append([field.name , field.type , field.precision , field.scale, field.length, field.aliasName , field.isNullable , field.required])
for shape in fcs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for field in allfields:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management(shape , field[0] , field[1] , field[2], field[3], field[4] , field[5], field[6] , field[7])

endtime2 = time.time() - starttime2
print 'Total time: ' + str(endtime2) +'s' # about 7 seconds&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:29:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187422#M476</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-11T09:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187423#M477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly does the Test A code output to?&amp;nbsp; I put in the template shapefile and workspace path I want to use in place of template.shp, and add print newCopy to the end and it tells me newCopy is not defined, there's no new shapefile in the workspace, or anywhere else on the C drive.&amp;nbsp; The rest of the code runs fine, I just can figure out where its sending the results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2015 20:05:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187423#M477</guid>
      <dc:creator>KeithAddison1</dc:creator>
      <dc:date>2015-09-14T20:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187424#M478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For me, it output new files to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f6f6f6;"&gt;C:\junk\new_fields\output_1.shp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6; color: #0000ff; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;C:\junk\new_fields\output_2.shp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6; color: #0000ff; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;C:\junk\new_fields\output_3.shp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6; color: #0000ff; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;C:\junk\new_fields\output_4.shp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6; color: #0000ff; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;C:\junk\new_fields\output_5.shp&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2015 20:33:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187424#M478</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-09-14T20:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187425#M479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well this is baffling, here is the code I run:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy, time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.env.workspace = r'C:\Users\keith.addison\Documents\PythonStuff'&lt;/P&gt;&lt;P&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;template = 'ParcelDataAC150.shp'&lt;/P&gt;&lt;P&gt;fcs = arcpy.ListFeatureClasses('*Copy*')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;starttime1 = time.time()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outCounter = 1&lt;/P&gt;&lt;P&gt;for fc in fcs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newCopy = "output_" + str(outCounter) + '.shp'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Copy_management(template, newCopy)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Append_management(fc, newCopy, 'NO_TEST')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; outCounter += 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endtime1 = time.time() - starttime1&lt;/P&gt;&lt;P&gt;print 'Total time: ' + str(endtime1) +'s'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it doesn't create any new shapefiles in the working directory or anywhere else, it also outputs the run time as 0.0s.&amp;nbsp; I've tried running it with several different template shapefiles with varying populated and unpopulated field setups to no avail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2015 21:02:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187425#M479</guid>
      <dc:creator>KeithAddison1</dc:creator>
      <dc:date>2015-09-14T21:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187426#M480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You've got your template and "other" shapefiles. In my example, my "other" shapefiles happened to have the word "Copy" in their file names. Do yours? The line &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;fcs = arcpy.ListFeatureClasses('*Copy*') means find the feature classes with the word "Copy" in the file name. Do you have any such shapefiles?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2015 21:22:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187426#M480</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-09-14T21:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute table fields from one shapefile to another</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187427#M481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That was it, thanks!&amp;nbsp; Sorry about that, I'm still figuring out Python syntax.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 17:46:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/copy-attribute-table-fields-from-one-shapefile-to/m-p/187427#M481</guid>
      <dc:creator>KeithAddison1</dc:creator>
      <dc:date>2015-09-15T17:46:24Z</dc:date>
    </item>
  </channel>
</rss>

