统计工程内的代码行数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计工程内的代码行数相关的知识,希望对你有一定的参考价值。

using UnityEngine;
using System.Collections;
using UnityEditor;
using System.Collections.Generic;
using System.IO;

/// <summary>
/// 统计工程内的代码行数
/// </summary>
public class CodeCounter
{

    [MenuItem("Tools/统计工程内的代码行数")]
    public static void Func()
    {
        int allRow = 0;
        string directoryPath = Application.dataPath + "/Script";
        Debug.Log("搜索的文件夹:" + directoryPath);
        List<string> listFiles = new List<string>(Directory.GetFiles(directoryPath, "*.cs", SearchOption.AllDirectories));
        Debug.Log("查找到的 C# 文件数量为 " + listFiles.Count);
        for (int i = 0; i < listFiles.Count; i++)
        {
            allRow += File.ReadAllLines(listFiles[i]).Length;
        }
        Debug.Log("统计结果:您已经写了 " + allRow + " 行代码。");
    }
}

 

以上是关于统计工程内的代码行数的主要内容,如果未能解决你的问题,请参考以下文章

Java关于条件判断练习--统计一个src文件下的所有.java文件内的代码行数(注释行空白行不统计在内)

git统计代码工程总行数和细分每个代码文件行数

eclipse怎么统计代码行数

统计代码行数

eclipse-统计代码行数

使用命令行统计代码行数