要拷貝文件到指定路徑,可以使用shutil模塊中的copy
或copy2
函數(shù)。下面是一個示例代碼:
import shutil
# 源文件路徑
src_path = 'path/to/source/file.txt'
# 目標(biāo)文件路徑
dst_path = 'path/to/destination/file.txt'
# 使用copy函數(shù)拷貝文件
shutil.copy(src_path, dst_path)
上述代碼中,copy
函數(shù)可以拷貝文件,并保留源文件的權(quán)限、狀態(tài)等信息。如果想要在拷貝文件的同時保留源文件的元數(shù)據(jù),可以使用copy2
函數(shù)。