Python
1
Вклад в тег
import os
from send2trash import send2trash
array = []
for index in range(len(os.listdir())):
array.append(os.listdir()[index])
else:
count = 1
print('\nЧто удаляем? Назад - "0"')
for index in range(len(array)):
print(f'\t{count}. {array[index]}')
count += 1
what_to_delete = int(input())
def successful_delete():
print(f'\nРубрика {array[what_to_delete - 1]} успешно удалена!')
send2trash(array[what_to_delete - 1])
are_you_sure = input(f'''\nВы уверены что хотите удалить файл "{array[what_to_delete - 1]}"?
000. Да
1. Нет\n''')
if are_you_sure == '000':
successful_delete()