我有一个递归目录.子目录和文件名均包含非法字符.我有一个清理名称的功能,例如它用名称中的下划线替换了空格.必须有一种更简单的方法,但我找不到重命名文件夹和文件的方法.因此,我想先重命名文件夹.
for path,subdirs,files in os.walk(root): for name in subdirs: new_name=clean_names(name) name=os.path.join(path,name) new_name=os.path.join(path,new_name) os.chdir(path) os.rename(name,new_name)
当我检查我的真实文件夹及其内容时,我看到只有第一个子文件夹名称被更正.我可以看到原因,因为os.chdir(path)更改了cwd,然后在for循环开始到第二条路径之前它没有更改.我以为在os.rename之后我可以更改cwd,但是我敢肯定有更优雅的方法可以做到这一点.如果我删除os.chdir行,则会出现filenotfound错误.
我看到以前曾有人问过重命名子目录,但是它们在命令行中.
最佳答案您应该改用os.walk(root,topdown = False);否则,一旦顶层文件夹被重命名,os.walk将无法访问子文件夹,因为它无法再找到其父文件夹.documentation的节选:
If optional argument
topdown
isTrue
or not specifIEd,the triple for
a directory is generated before the triples for any of its
subdirectorIEs (directorIEs are generated top-down). Iftopdown
is
False
,the triple for a directory is generated after the triples for
all of its subdirectorIEs (directorIEs are generated bottom-up). No
matter the value of topdown,the List of subdirectorIEs is retrIEved
before the tuples for the directory and its subdirectorIEs are
generated.
请注意,您根本不需要调用os.chdir,因为传递给os.rename的所有路径都是绝对路径. 总结
以上是内存溢出为你收集整理的如何在脚本python3中递归重命名子目录和文件名? 全部内容,希望文章能够帮你解决如何在脚本python3中递归重命名子目录和文件名? 所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)