|
@@ -63,9 +63,11 @@ for file_1 in tqdm(files_paths):
|
|
|
if (ratio > 70):
|
|
|
# время создания файла
|
|
|
later_file = small_filename_1
|
|
|
+ early_file = small_filename_2
|
|
|
if (os.path.getctime(file_1) < os.path.getctime(file_2)):
|
|
|
+ early_file = small_filename_1
|
|
|
later_file = small_filename_2
|
|
|
- out_str += f"{small_filename_2}\n"
|
|
|
+ out_str += f"{later_file} позже {early_file}\n"
|
|
|
out_str += f"ratio = {ratio}\n"
|
|
|
|
|
|
exec_files_paths.append(f"{small_filename_1}|{small_filename_2}")
|