用python 移动特定文件夹中的文件
时间: 2024-01-31 19:03:39 浏览: 67
python实现指定文件夹下的指定文件移动到指定位置
3星 · 编辑精心推荐
你可以使用Python的shutil模块来移动特定文件夹中的文件。以下是一个示例代码,可以将指定路径下的所有txt文件移动到另一个文件夹:
```python
import os
import shutil
# 指定需要移动的文件夹路径
source_folder = "path/to/source/folder"
# 指定需要移动到的文件夹路径
destination_folder = "path/to/destination/folder"
# 获取文件夹中所有文件
files = os.listdir(source_folder)
# 遍历所有文件,移动txt类型的文件到目标文件夹
for file in files:
if file.endswith(".txt"):
shutil.move(os.path.join(source_folder, file), destination_folder)
```
你可以根据自己的需求修改代码,例如修改需要移动的文件类型、指定特定的文件名等。
阅读全文