Hi,
I have been given a task that required me to update existing data. I had to unzip a set of e00 files then bring them into Arcmap (I used the extract all method), then use this python code (below) to unpack them
import arcpy, os
arcpy.env.overwriteOutput = True
# Workspace for interchange files
arcpy.env.workspace = ws = "C:\_Planharv2017update"
# List all ArcInfo Interchange files (.e00)
for cov in arcpy.ListFiles('*.e00'):
arcpy.ImportFromE00_conversion(cov, ws, cov.split('.')[0])
print 'Converted %s' % cov
and then append them. The code will run however it seems to not change the data. So I used the manual tool import from e00 and it worked perfectly. However it will not allow me to append the updates, does anyone know where I have gone wrong or what do to next?
You are exporting to a folder, this means the outputs will be shp files. I recommend creating a file geodatabase and putting your intermediate results there.
To append data to an existing feature class you use the Append (Management) tool.