I am trying to copy a large number of rasters in grid format to different directories. The rasters were created in ArcGIS9.3 and I am trying to copy and rename them with ArcGIS 10 using a python script. The problem is that when I do this the grids are no longer useable with 9.3 but seem fine in 10? I had to recode my script and run it from ArcGIS9.3 to get good results. It seems that this should not be an issue when the following bit of code works for ArcGIS10 or 9.3. gp.Copy_management(depth__1_, Output_data_element__1_, "RasterDataset")
gp.Rename_management(Output_data_element__1_, Output_data_element__1_ + StreamCode, "")
Anyone else have this issue?