Python 3 - os.rename() 方法
-
描述
方法rename()重命名文件或目录src到dst。如果dst是文件或目录(已经存在),将引发OSError 。 -
句法
以下是语法rename()方法 -os.rename(src, dst)
-
参数
-
src− 这是文件或目录的实际名称。
-
dst− 这是文件或目录的新名称。
-
-
返回值
此方法不返回任何值。 -
例子
以下示例显示了 rename() 方法的用法。# !/usr/bin/python3 import os, sys os.chdir("d:\\tmp") # listing directories print ("The dir is: %s"%os.listdir(os.getcwd())) # renaming directory ''tutorialsdir" os.rename("python3","python2") print ("Successfully renamed.") # listing directories after renaming "python3" print ("the dir is: %s" %os.listdir(os.getcwd()))
-
结果
当我们运行上面的程序时,它会产生以下结果 -The dir is: [ 'Applicationdocs.docx', 'book.zip', 'foo.txt', 'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files', 'java.ppt', 'Python3' ] Successfully renamed. the dir is: [ 'Applicationdocs.docx', 'book.zip', 'foo.txt', 'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files', 'java.ppt', 'python2' ]