Thanks guys, here is where I'm at.
In a created GDB we have four classes already there (in hundreds of these.)
MAPGRID_003_076.gdb
MapGrid
A_003_076 - Geodatabase Feature Class
B_003_076 - Geodatabase Feature Class
C_003_076 - Geodatabase Feature Class
D_003_076 - Geodatabase Feature Class
And in a template GDB they have the same Classes but three more they want to copy.
But these three Feature Classes have some data.
CountyCode_MapGrid-template.gdb
MapGrid
F_mapgrid_number <--want to copy this Geodatabase Feature Class
A_mapgrid_number
G_mapgrid_number <--want to copy this Geodatabase Feature Class
B_mapgrid_number
H_mapgrid_number <--want to copy this Geodatabase Feature Class
C_mapgrid_number
D_mapgrid_number
So F, G, and H have to be copied AND renamed so the 'mapgrid_number' = such as '003_076'.
I created them using...
arcpy.CreateFeatureclass_management(out_path, out_name, geometry_type, template, has_m, has_z, spatial_reference)
Which works fine and ArcMap shows it up.
But now I need to copy INTO the new created F, G, and H Geodatabase Feature Class from another GDB that already has a F, G, and H Geodatabase Feature Classes that has data they want to show up on ALL of them.
Now do I create as I did above and then use arcpy.CopyFeatures_management to overlay the new F, G, and H I already have or is there some way to skip the create and just copy it across.
Thanks,
Paul