import arcpy from arcpy import env import os # Set the workspace for the ListFeatureClass function # env.workspace = "c:/base" # Use the ListFeatureClasses function to return a list of # all shapefiles. # fcList = arcpy.ListFeatureClasses() # Copy shapefiles to a file geodatabase # for fc in fcList: arcpy.CopyFeatures_management(fc, "d:/base/output.gdb" + os.sep + fc.rstrip(".shp"))
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.