亿迅智能制造网
工业4.0先进制造技术信息网站!
首页 | 制造技术 | 制造设备 | 工业物联网 | 工业材料 | 设备保养维修 | 工业编程 |
home  MfgRobots >> 亿迅智能制造网 >  >> Industrial programming >> Python

Python 使用 os.rename() 重命名文件和目录

Python 重命名文件

Python 重命名() 文件 是 Python 编程中用于重命名文件或目录的方法。 Python rename() 文件方法可以通过传递名为 src (Source) 和 dst (Destination) 的两个参数来声明。

语法

这是 os.rename() 方法的语法

os.rename(src, dst)

参数

源代码: Source 是文件或目录的名称。它应该已经存在了。

dst: Destination 是您要更改的文件或目录的新名称。

示例:

import os  
os.rename('guru99.txt','career.guru99.txt') 

让我们详细看例子

您可以重命名原始文件,我们已将文件名从“Guru99.txt”更改为“Career.guru99.txt”。

这是完整的代码

import os
import shutil
from os import path

def main():
	# make a duplicate of an existing file
    if path.exists("guru99.txt"):
	# get the path to the file in the current directory
        src = path.realpath("guru99.txt");
		
	# rename the original file
        os.rename('guru99.txt','career.guru99.txt') 
		
if __name__ == "__main__":
    main()

Python

  1. Python 关键字和标识符
  2. Python 语句、缩进和注释
  3. Python 变量、常量和文字
  4. Python 类型转换和类型转换
  5. Python 输入、输出和导入
  6. Python 全局、局部和非局部变量
  7. Python 文件 I/O
  8. Python 目录和文件管理
  9. Python 错误和内置异常
  10. Python 异常处理使用 try、except 和 finally 语句
  11. Python 和 Raspberry Pi 温度传感器
  12. Python 平均值:如何在 Python 中找到列表的平均值