How do you check if a feature class is empty and if it's empty append features to that feature class, if it's not not empty it would just pass or ignore the append. Would it best to use count or arcpy.da.SearchCursor?
with arcpy.da.SearchCursor(FcLyr, "SHAPE@")as cursor:
for row in cursor:
if row[0] is None:
arcpy.Append_management(FcLyr2, FcLyr)
else:
print 'Has features'<SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>