python的os模块复制文件
时间: 2023-10-12 14:22:08 浏览: 145
浅谈Python中os模块及shutil模块的常规操作
可以使用 `shutil` 模块来复制文件,示例代码如下:
```python
import shutil
# 源文件路径
src_file = '/path/to/source/file.txt'
# 目标文件路径
dst_file = '/path/to/destination/file.txt'
# 复制文件
shutil.copy(src_file, dst_file)
```
其中,`src_file` 是源文件路径,`dst_file` 是目标文件路径。`shutil.copy` 方法会将源文件复制到目标文件路径中。如果目标文件路径已经存在,则会覆盖目标文件。如果你需要保留源文件的元数据(如修改时间和权限),可以使用 `shutil.copy2` 方法。
阅读全文