码迷,mamicode.com
首页 > 编程语言 > 详细

计算程序总行数的Python代码

时间:2014-11-11 19:01:02      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   java   sp   for   div   on   

最近需要统计一下项目中代码的总行数,写了一个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)

关于代码上的分析就到这里,例子比较简单,如果需要下载代码请移步这

计算程序总行数的Python代码

标签:style   blog   color   os   java   sp   for   div   on   

原文地址:http://www.cnblogs.com/dyllove98/p/4090013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!