我的代码有问题。我对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)
有人可以帮助我吗?
答案 0 :(得分:0)
您需要提供文件的完整路径
更新
old = filename
new = 'old_' + old
到
old = os.path.join(dirname, filename)
new = os.path.join(dirname, 'old_' + filename)