Использовал метод Python shutil.move (), но мне нужно переместить миллион файлов из одного места в другое, и я хотел бы перенаправить / отключить вывод shutil.move ().
if os.path.exists(logs_path_archive):
for source_file in downloaded_files:
destination_file = source_file.replace(logs_path,logs_path_archive)
shutil.move(source_file,destination_file)
Есть рекомендации?