У меня проблема с моим кодом.Я довольно новичок в Python, но я пытаюсь создать скрипт для переименования всех файлов в папке (+ подпапки) старше 3 лет.Он отлично работает для файлов в папке, но когда дело доходит до файлов в подпапках, я получаю сообщение об ошибке «файл не найден».
Вот мой код:
import sys, os.path, time, datetime
count = 0
for (dirname, dirs, files) in os.walk('.'):
for filename in files:
thefile = os.path.join(dirname,filename)
today = datetime.datetime.today()
modified_date = datetime.datetime.fromtimestamp(os.path.getmtime(thefile))
duration = today - modified_date
if duration.days > 1095:
old = filename
new = 'old_' + old
print(thefile, "Last modified: %s" % time.ctime(os.path.getmtime(thefile)), os.path.getmtime(thefile))
count = count + 1
os.renames(old, new)
print("number of old files: ", count)
Может кто-нибудьпомогите мне?