Answers for "arcpy rename feature class"

0

arcpy rename feature class

import arcpy
from arcpy import env

env.workspace = "C:/data"
arcpy.Rename_management("customers.dbf", "customers_2010.dbf")
Posted by: Guest on May-02-2022

Browse Popular Code Answers by Language