当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.replace()用法及代码示例


先决条件: Python中的OS模块。

Python中的os.replace()方法用于重命名文件或目录。如果目标是目录,则将引发OSError。如果目标存在并且是文件,则在执行操作的用户具有权限的情况下,它将被无错误地替换。如果源和目标位于不同的文件系统上,则此方法可能会失败。

用法: os.replace(source, destination, *, src_dir_fd=None, dst_dir_fd=None2)

参数:

  • source:我们要重命名的文件或目录的名称。
  • destination:想在目的地给的名字。
  • src_dir_id:此参数存储源目录的或文件,
    引用目录的文件描述符。
  • dst_dir_fd:它是指目录的文件描述符,
    以及运营路径。应该是相对的
    路径将相对于该目录。如果
    路径是绝对的,dir_fd被忽略。

Return Type:此方法不返回任何值。



代码1:使用os.replace()方法重命名文件。

Python3

# Python program to explain os.replace() method
 
# importing os module
import os
 
# file name
file = "f.txt"
 
# File location which to rename
location = "d.txt"
 
# Path
path = os.replace(file, location)
 
# renamed the file f.txt to d.txt
print("File %s is renamed successfully" % file)

输出:

File f.txt is renamed successfully

代码2:处理可能的错误。 (如果给出了必要的权限,则输出将如下所示)

Python

# Python program to explain os.replace() method
 
# importing os module
import os
 
# Source file path
source = './file.txt'
 
# destination file path
dest = './da'
 
 
# try renaming the source path
# to destination path
# using os.rename() method
 
try:
    os.replace(source, dest)
    print("Source path renamed to destination path successfully.")
 
# If Source is a file
# but destination is a directory
except IsADirectoryError:
    print("Source is a file but destination is a directory.")
 
# If source is a directory
# but destination is a file
except NotADirectoryError:
    print("Source is a directory but destination is a file.")
 
# For permission related errors
except PermissionError:
    print("Operation not permitted.")
 
# For other errors
except OSError as error:

输出:

Source is a file but destination is a directory.

相关用法


注:本文由纯净天空筛选整理自coder36大神的英文原创作品 Python – os.replace() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。