python - Append results of arcpy.TableToTable_conversion to same table -
how can 1 append results of arcpy.tabletotable_conversion() same table when reading multiple tables?
thanks.
lf = arcpy.listfiles() files = 0 f in lf: files +=1 arcpy.tabletotable_conversion(f, out_path, "usps") print f print arcpy.getmessages()
what using append? either after each conversion or better, outside loop, tables @ once.
Comments
Post a Comment