for root, _dirs, files in os.walk(dir_path):
#查找文件 root为当期目录 _dirs为目录下的子目录名称 列表形式 files是文件名 列表形式
for file in files:
if file.startswith(server_obj.ipmiIp) is True:
sub_dir = os.path.join(root, "".join(_dirs))
src_path = os.path.join(sub_dir, file)
logging.info(src_path)
dest_path = os.path.join(ROOT, 'filename/')
if not os.path.exists(dest_path):
os.makedirs(dest_path)
shutil.move(src_path, dest_path)
# 移动文件
log_path = os.path.join(dest_path, file)
return log_path