I recieve every month a folder with many shapes.
I have to export one by to a file geodatabase.
I'm trying to create a script that append the list of shapes in a folder to a file geodatabase and I don't find a solution.
I'm new in python so looking for solutions trying this.
import arcpy
out=r'F:\CAR_Geral.gdb'
shapes=r'F:\INSCRITO_CAR'
for i in shapes:
arcpy.FeatureClassToGeodatabase_conversion(shapes,out)