python移动当前文件夹下的所有文件到指定位置
时间: 2023-05-15 18:07:11 浏览: 266
python实现指定文件夹下的指定文件移动到指定位置
3星 · 编辑精心推荐
你可以使用Python的shutil模块来移动当前文件夹下的所有文件到指定位置。以下是示例代码:
```python
import shutil
import os
# 指定要移动到的文件夹路径
destination_folder = '/path/to/destination/folder'
# 获取当前文件夹下的所有文件
files = os.listdir()
# 遍历所有文件并移动到指定文件夹
for file in files:
# 排除当前脚本文件
if file != os.path.basename(__file__):
shutil.move(file, destination_folder)
```
这段代码将当前文件夹下的所有文件移动到指定的文件夹路径。请将`/path/to/destination/folder`替换为你要移动到的文件夹路径。
阅读全文