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"))
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.