编写程序使用shutil模块中的move()方法进行文件移动
时间: 2023-12-10 20:37:24 浏览: 113
可以使用以下代码来移动文件:
```python
import shutil
# 从source_path移动到destination_path
source_path = "/path/to/source/file"
destination_path = "/path/to/destination/folder"
shutil.move(source_path, destination_path)
```
注意,如果目标文件夹中已经存在同名文件,则会被覆盖。如果要重命名文件,可以将目标路径设置为新的文件名。例如:
```python
import shutil
# 从source_path移动到destination_path并重命名为new_file_name
source_path = "/path/to/source/file"
destination_path = "/path/to/destination/new_file_name"
shutil.move(source_path, destination_path)
```
阅读全文