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


Python shutil.copyfile()用法及代码示例


Python中的Shutil模块提供了许多对文件和文件集合进行高级操作的函数。它属于Python的标准实用程序模块。此模块有助于自动执行文件和目录的复制和删除过程。

shutil.copyfile()Python中的方法用于将源文件的内容复制到目标文件。文件的元数据未复制。源和目标必须代表一个文件,并且目标必须是可写的。如果目标已经存在,则将其替换为源文件,否则将创建一个新文件。如果源和目标表示相同的文件,则将引发SameFileError异常。

用法: shutil.copyfile(source, destination, *, follow_symlinks = True)

参数:
source:代表源文件路径的字符串。
destination:代表目标文件路径的字符串。
follow_symlinks(可选):此参数的默认值为True。如果为False且source表示符号链接,则将创建一个新的符号链接,而不是复制文件。

Note:参数列表中的“ *”表示以下所有参数(此处为“ follow_symlinks”)仅是关键字参数,可以使用其名称(而不是位置参数)来提供。

返回类型:此方法返回一个表示新创建文件路径的字符串。

代码1:使用shutil.copyfile()方法将文件从源复制到目标
# Python program to explain shutil.copyfile() method  
    
# importing os module  
import os 
  
# importing shutil module  
import shutil 
  
# path 
path = '/home/User/Documents'
  
# List files and directories 
# in '/home/User/Documents' 
print("Before copying file:") 
print(os.listdir(path)) 
  
  
# Source path 
source = "/home/User/Documents/file.txt"
  
# Destination path 
destination = "/home/User/Documents/file(copy).txt"
  
# Copy the content of 
# source to destination 
dest = shutil.copyfile(source, destination) 
  
# List files and directories 
# in "/home / User / Documents" 
print("After copying file:") 
print(os.listdir(path)) 
  
# Print path of newly  
# created file 
print("Destination path:", dest)
输出:
Before copying file:
['hrithik.png', 'test.py', 'sample.txt', 'file.text', 'copy.cpp']
After copying file:
['hrithik.png', 'test.py', 'sample.txt', 'file.text', 'file(copy).txt', 'copy.cpp']
Destination path: /home/User/Documents/file(copy).txt
代码2:使用shutil.copyfile()方法时可能出现的错误
# Python program to explain shutil.copyfile() method  
    
# importing shutil module  
import shutil 
  
  
# If the source and destination 
# represents the same file 
# 'SameFileError' exception 
# will be raised 
  
# If the destination is 
# is directory then 
# 'IsADirectoryError' exception 
# will be raised 
  
# If the destination is 
# not writable 
# 'PermissionError' exception 
# will be raised 
  
  
# Source path 
source = "/home/User/Documents/file.txt"
  
# Destination path 
destination = "/home/User/Documents/file.txt"
  
# Copy the content of 
# source to destination 
shutil.copyfile(source, destintion)
输出:
Traceback (most recent call last):
  File "copy.py", line 31, in 
    shutil.copyfile(source, destination)
  File "/usr/lib/python3.6/shutil.py", line 104, in copyfile
    raise SameFileError("{!r} and {!r} are the same file".format(src, dst))
shutil.SameFileError: '/home/User/Documents/file.txt' and '/home/User/Documents/file.txt'
are the same file
代码3:使用Shutil.copyfile()方法处理错误
# Python program to explain shutil.copyfile() method  
    
# importing shutil module  
import shutil 
  
# Source path 
source = "/home/User/Documents/file.txt"
  
# Destination path 
destination = "/home/User/Documents"
  
# Copy the content of 
# source to destination 
  
try: 
    shutil.copyfile(source, destination) 
    print("File copied successfully.") 
  
# If source and destination are same 
except shutil.SameFileError: 
    print("Source and destination represents the same file.") 
  
# If destination is a directory. 
except IsADirectoryError: 
    print("Destination is a directory.") 
  
# If there is any permission issue 
except PermissionError: 
    print("Permission denied.") 
  
# For other errors 
except: 
    print("Error occurred while copying file.")
输出:
Destination is a directory.

参考: https://docs.python.org/3/library/shutil.html



相关用法


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