"""
用python批量获取某路径文件夹及子文件夹下的指定类型文件,并按指定路径进行存储
"""
import os
import shutil
soundfile = []
filepath = ''
newdir = []
pathdir = os.listdir(r'C:\Users\laiwu\PycharmProjects\pythonProject1')
print('###########')
print(pathdir)
for s in pathdir:
newdir = os.path.join(filepath, s) # 将文件名加入到当前文件路径后面
print(newdir)
if os.path.isfile(newdir): # 如果是文件
if os.path.splitext(newdir)[1] == ".xlsx": # 如果文件是".pdb"后缀的
soundfile.append(newdir)
elif os.path.isdir(newdir): # 如果是路径
break # 递归
python文件目录调整,待摸索中
Python批量获取指定类型文件并存储
最新推荐文章于 2024-06-14 20:05:13 发布
3388

被折叠的 条评论
为什么被折叠?



