python文件拷贝
时间: 2023-08-15 20:13:52 浏览: 103
python文件递归拷贝
要在 Python 中拷贝文件,你可以使用 `shutil` 模块的 `copy` 函数。下面是一个示例代码,演示如何拷贝一个文件:
```python
import shutil
source_file = 'path/to/source/file.txt'
destination_file = 'path/to/destination/file.txt'
shutil.copy(source_file, destination_file)
```
请确保将 `source_file` 替换为源文件的路径,将 `destination_file` 替换为目标文件的路径。这样就可以将源文件拷贝到目标路径中了。如果目标路径中已经存在同名文件,它将会被覆盖。如果你想保留文件元数据(如访问时间、修改时间等),可以使用 `shutil.copy2` 函数。
希望这可以帮助到你!如果你还有其他问题,请随时提问。
阅读全文