Python遍历文件夹并 改所有文件的后缀名

遍历目录 F:尀尀python2,包括子目录,并把 .txt 改成 .py应该怎么写
2024-11-03 15:53:49
推荐回答(1个)
回答1:

import os
import shutil


root = 'F:\\python2'
for rt, dirs, files in os.walk(root):
    for f in files:
        fn = os.path.join(rt, f)
        nfn = fn.replace('.txt', '.py').
        if src in fn and fn != nfn:
            shutil.move(fn, nfn)