大写字母 - 它们有什么意义?他们给你的只是rsi。
我想从我的目录结构中删除尽可能多的大小写。我如何编写一个脚本来在python中执行此操作?
它应该递归地解析指定的目录,用大写字母标识文件/文件夹名称,并用小写重命名。
答案 0 :(得分:14)
os.walk
非常适合使用文件系统进行递归操作。
import os
def lowercase_rename( dir ):
# renames all subforders of dir, not including dir itself
def rename_all( root, items):
for name in items:
try:
os.rename( os.path.join(root, name),
os.path.join(root, name.lower()))
except OSError:
pass # can't rename it, so what
# starts from the bottom so paths further up remain valid after renaming
for root, dirs, files in os.walk( dir, topdown=False ):
rename_all( root, dirs )
rename_all( root, files)
向上走树的意思是当你有一个像'/ A / B'这样的目录结构时,你也会在递归过程中得到路径'/ A'。现在,如果从顶部开始,则首先将/ A重命名为/ a,从而使/ A / B路径无效。另一方面,当您从底部开始并首先将/ A / B重命名为/ A / B时,它不会影响任何其他路径。
实际上你也可以使用os.walk
进行自上而下,但那会(稍微)更复杂。
答案 1 :(得分:2)
尝试以下脚本:
#!/usr/bin/python
'''
renames files or folders, changing all uppercase characters to lowercase.
directories will be parsed recursively.
usage: ./changecase.py file|directory
'''
import sys, os
def rename_recursive(srcpath):
srcpath = os.path.normpath(srcpath)
if os.path.isdir(srcpath):
# lower the case of this directory
newpath = name_to_lowercase(srcpath)
# recurse to the contents
for entry in os.listdir(newpath): #FIXME newpath
nextpath = os.path.join(newpath, entry)
rename_recursive(nextpath)
elif os.path.isfile(srcpath): # base case
name_to_lowercase(srcpath)
else: # error
print "bad arg: " + srcpath
sys.exit()
def name_to_lowercase(srcpath):
srcdir, srcname = os.path.split(srcpath)
newname = srcname.lower()
if newname == srcname:
return srcpath
newpath = os.path.join(srcdir, newname)
print "rename " + srcpath + " to " + newpath
os.rename(srcpath, newpath)
return newpath
arg = sys.argv[1]
arg = os.path.expanduser(arg)
rename_recursive(arg)