计算程序总行数的Python代码

最近需要统计一下项目中代码的总行数,写了一个Python小程序,不得不说Python是多么的简洁,如果用Java写至少是现在代码的2倍。

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)

注意:这个建议只统计小文件,对于很大的文件,性能会很慢

本文出自 “记录” 博客,请务必保留此出处http://wolfoxer.blog.51cto.com/53225/1575412

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。