Python 复制文件
时间: 2024-01-29 22:10:13 浏览: 74
以下是两种Python复制文件的方法:
1. 使用shutil模块的copy()函数
```python
import shutil
# 源文件路径
src_file = 'path/to/source/file.txt'
# 目标文件路径
dst_file = 'path/to/destination/file.txt'
# 复制文件
shutil.copy(src_file, dst_file)
```
2. 使用os模块的system()函数执行系统命令
```python
import os
# 源文件路径
src_file = 'path/to/source/file.txt'
# 目标文件路径
dst_file = 'path/to/destination/file.txt'
# 执行系统命令复制文件
os.system(f'cp {src_file} {dst_file}')
```
阅读全文