用于统计项目中代码总行数的Python脚本分享
最近需要统计一下项目中代码的总行数,写了一个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 sqlite3 判断cursor的结果是否为空的案例
这篇文章主要介绍了python sqlite3 判断cursor的结果是否为空的案例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2021-03-03python SQLAlchemy的Mapping与Declarative详解
这篇文章主要介绍了python SQLAlchemy的Mapping与Declarative详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下2019-07-07
最新评论