python 复制文件
时间: 2023-07-25 10:44:33 浏览: 97
Python 文件或文件夹复制
你可以使用 Python 的 shutil 模块来复制文件。以下是一个简单的示例代码:
```python
import shutil
# 将源文件复制到目标文件
src_file = 'path/to/source/file'
dst_file = 'path/to/destination/file'
shutil.copy(src_file, dst_file)
# 或者将源文件夹复制到目标文件夹
src_dir = 'path/to/source/directory'
dst_dir = 'path/to/destination/directory'
shutil.copytree(src_dir, dst_dir)
```
请注意,如果目标文件/文件夹已经存在,它们将被覆盖。如果你想保留目标文件夹中的现有文件,你可以使用 shutil.copy2() 函数来复制文件,或者使用 os.path.exists() 函数来检查目标文件/文件夹是否存在。
阅读全文