如何在Python目录中重命名多个文件?
如果您有要重命名的文件列表和相应的新文件名,则可以使用os模块的重命名方法。
例如
import osfor old, new in files.iteritems(): # files.items() in Python 3
os.rename(old, new)
您也可以使用shutil(或shell实用程序)模块。调用shutil.move(source,destination)会将路径源中的文件或文件夹移动到路径目标,并将返回新位置的绝对路径的字符串。
例如
import shutilfor old, new in files.iteritems(): # files.items() in Python 3
shutil.move(old, new)
以上是 如何在Python目录中重命名多个文件? 的全部内容, 来源链接: utcz.com/z/340831.html