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

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -