# Copyright 2021 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import sys
import shutil
import json
if __name__ == '__main__':
bin_path = sys.argv[1]
resule_path = sys.argv[2]
if not os.path.exists(resule_path):
os.mkdir(resule_path)
with open(bin_path+'/sumary.json', "r") as f:
row_data = json.load(f)
i = 0
for v in row_data['filesinfo'].values():
file_name = str(v['infiles']).split('/')[-1]
dir_name = file_name.split('_')[0] + '--' + file_name.split('_')[1]
dir_path = os.path.join(resule_path, dir_name)
if not os.path.exists(dir_path):
os.mkdir(dir_path)
file_list = os.listdir(resule_path)
for dir in file_list:
dir = dir.strip('\n')
cur_path = os.path.join(resule_path, dir)
for v in row_data['filesinfo'].values():
file_name = str(v['infiles']).split('/')[-1]
if file_name.split('_')[0] == dir.split('--')[0]:
# copy and rename
file = str(v['outfiles'][0])
print(cur_path, file_name[:-6]+'_1'+file_name[-6:-2])
print(file)
shutil.copy(file,
os.path.join(cur_path, file_name[:-6])+'_1'+file_name[-6:-2])
# f = os.listdir(bin_path)
# for data in f:
# data = data.strip('\n')
# dir_name = data.split('_')[0] + '--' + data.split('_')[1]
# dir_path = os.path.join(resule_path, dir_name)
# if not os.path.exists(dir_path):
# os.mkdir(dir_path)
# file_list = os.listdir(resule_path)
# for dir in file_list:
# dir = dir.strip('\n')
# cur_path = os.path.join(resule_path, dir)
# for data in f:
# data = data.strip('\n')
# if data.split('_')[0] == dir.split('--')[0]:
# shutil.copy(os.path.join(bin_path, data),
# os.path.join(cur_path, data))