|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
import easygui as g
import os
def show_result(start_dir):
lines = 0
total = 0
text = ""
for i in source_list:
lines = source_list[i]
total += lines
text += "【%s】源文件 %d 个,源代码 %d 行\n" % (i, file_list[i], lines)
title = '统计结果'
msg = '您目前共累积编写了 %d 行代码,完成进度:%.2f %%\n离 10 万行代码还差 %d 行,请继续努力!' % (
total, total/1000, 100000-total)
g.textbox(msg, title, text)
def calc_code(file_name):
lines = 0
with open(file_name) as f:
print('正在分析文件:%s ...' % file_name)
try:
for each_line in f:
lines += 1
except UnicodeDecodeError:
pass # 不可避免会遇到格式不兼容的文件,这里忽略掉......
return lines
def search_file(start_dir):
os.chdir(start_dir)
for each_file in os.listdir(os.curdir):
ext = os.path.splitext(each_file)[1]
if ext in target:
lines = calc_code(each_file) # 统计行数
# 还记得异常的用法吗?如果字典中不存,抛出 KeyError,则添加字典键
# 统计文件数
try:
file_list[ext] += 1
except KeyError:
file_list[ext] = 1
# 统计源代码行数
try:
source_list[ext] += lines
except KeyError:
source_list[ext] = lines
if os.path.isdir(each_file):
os.chdir(os.path.join(os.curdir,each_file))
search_file(os.getcwd()) # 递归调用
# 递归调用后切记返回上一层目录
target = ['.c', '.cpp', '.py', '.cc', '.java', '.pas', '.asm']
file_list = {}
source_list = {}
g.msgbox("请打开您存放所有代码的文件夹......", "统计代码量")
path = g.diropenbox("请选择您的代码库:")
search_file(path)
show_result(path)
不知道要怎么修改@_@
感谢您提出的问题!在 search_file()函数中,为了能够递归地遍历目录树并搜索文件,我们需要使用 os.chdir()函数切换到当前目录的子目录。而在子目录递归完成后,我们需要返回上一级目录以继续搜索其他文件。这就是为什么在 search_file()函数中使用 os.chdir(os.path.pardir)来返回上一级目录。
具体来说, os.getcwd()返回当前工作目录的路径,而 os.chdir(os.path.pardir)将当前工作目录切换到其父目录(上一级目录)。这样,在递归调用 search_file()函数后,程序会返回到上一级目录,然后继续搜索其他文件。
这个步骤是为了确保程序能够在整个目录树中遍历所有文件,并找到目标文件。
希望这个解释能够帮助您理解为什么需要在递归后使用 os.chdir(os.path.pardir)。如果还有任何疑问,请随时提问!
|
|