使用python实现,复制文件
时间: 2024-01-01 21:06:44 浏览: 66
将文件夹中的每个文件复制 n次
可以使用Python的shutil库来复制文件。以下是示例代码:
```python
import shutil
# 将源文件src_file复制到目标文件dest_file
src_file = '/path/to/source/file'
dest_file = '/path/to/destination/file'
shutil.copy(src_file, dest_file)
```
请注意,如果目标文件已存在,`shutil.copy()`将覆盖它。如果您想保留目标文件,并将源文件内容附加到目标文件末尾,则可以使用`shutil.copyfile()`代替。
阅读全文