我在尝试着:
- 遍历一堆文件
- 做出一些改变
- 将旧文件复制到子目录。这是踢球者,如果新目录中的文件已经存在,我不想覆盖它。(例如,如果“Filename.mxd”已经存在,则复制并重命名为“Filename_1.mxd”。如果“Filename_1.mxd”存在,则将文件复制为“Filename_2.mxd”等等...)
- 保存文件(但要保存,而不是保存,以便覆盖现有文件)
它是这样的:
for filename in glob.glob(os.path.join(folderPath, "*.mxd")):
fullpath = os.path.join(folderPath, filename)
mxd = arcpy.mapping.MapDocument(filename)
if os.path.isfile(fullpath):
basename, filename2 = os.path.split(fullpath)
# Make some changes to my file here
# Copy the in memory file to a new location. If the file name already exists, then rename the file with the next instance of i (e.g. filename + "_" + i)
for i in range(50):
if i > 0:
print "Test1"
if arcpy.Exists(draftloc + "\\" + filename2) or arcpy.Exists(draftloc + "\\" + shortname + "_" + str(i) + extension):
print "Test2"
pass
else:
print "Test3"
arcpy.Copy_management(filename2, draftloc + "\\" + shortname + "_" + str(i) + extension)
mxd.save()
因此,我决定做两件事,就是将文件范围设置为远远超出我预期的范围(50)。我确信有更好的方法来做到这一点,只需递增到下一个数字而不设置范围。
如您所见,第二件事是脚本保存了范围内的所有内容。我只想在下一个不发生的 i 实例上保存一次。
希望这是有道理的,
麦克风