最近需要统计一下项目中代码的总行数,写了一个Python小程序,不得不说Python是多么的简洁,如果用Java写至少是现在代码的2倍。
[code]
import os
path="/Users/rony/workspace/ecommerce/ecommerce/hot-deploy/"
global totalcount
totalcount =0
def cfile (path):
allfiles = os.listdir(path)
for file in allfiles:
child = os.path.join(path,file)
if os.path.isdir(child):
cfile(child)
else:
filename,fileext= os.path.splitext(child)
print(fileext)
#file type need to calculate
if fileext in ['.java', '.jsp', '.html', '.htm', '.xml', '.sql', '.js', '.ftl', '.css','.groovy'] :
countf = len(open(child,'rU').readlines())
global totalcount
totalcount=totalcount+countf;
print(child)
print(countf)
cfile(path)
print(totalcount)
关于代码上的分析就到这里,例子比较简单。
到此这篇关于用于统计项目中代码总行数的Python脚本分享就介绍到这了。大学校园色彩单调,却不乏味,虽然每天校园都重复着同一种节奏,但是故事却不尽相同,大学校园承载着莘莘学子心中的梦,也是心中的梦实现的地方。让我们以美妙的青春为圆心,以丰富的知识为半径,在大学校园中画出人生中最完美的一个圆。更多相关用于统计项目中代码总行数的Python脚本分享内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!