首页 > Python资料 博客日记

Python os.rename()方法

2023-08-08 16:59:08Python资料围观249

本篇文章分享Python os.rename()方法,对你有帮助的话记得收藏一下,看Python资料网收获更多编程知识

Python的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.html', 'Java Multiple Inheritance_files', 
   'java.ppt', 'Python3'
]

Successfully renamed.

the dir is: [
   'Applicationdocs.docx', 'book.zip', 'foo.txt', 
   'Java Multiple Inheritance.html', 'Java Multiple Inheritance_files',
   'java.ppt', 'python2'
]

版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐