可能重复:
How do you count the lines of code in a Visual Studio solution?
我正在寻找软件或手段来计算VC6.0中的代码行:c ++项目:1500个文件:cpp,h,
我的预感是这个项目中有200到500万行代码。我需要一种方法来验证每个文件。
THX
答案 0 :(得分:3)
如果您的代码位于可以访问Unix和wc命令的find计算机上(或者您的Windows计算机上安装了Cygwin),则可以使用以下命令shell命令:
find . -name \*.cpp -or -name \*.hpp -exec cat {} \; | wc -l
调整通配符以选择您要扫描的文件(上面的示例选择扩展名为.cpp或.hpp的任何内容)。使用Visual Studio可能还有其他方法可以执行此操作。
如果您绝对必须使用基于Visual Studio的解决方案,请查看此Stackoverflow问题:
How do you count the lines of code in a Visual Studio solution?