我正在尝试在 iOS 应用程序中查找文件总数、函数和行代码总数。有没有任何工具可以找到这个。这可能找到吗?
问问题
897 次
2 回答
2
对于代码行:
find . "(" -name ".m" -or -name ".mm" -or -name "*.cpp" ")" -print0 | xargs -0 wc -l
对于文件数:
//you need to write this code
NSFileManager *filemgr = [NSFileManager defaultManager];
NSArray *filelist= [filemgr directoryContentsAtPath: yourPath];
int count = [filelist count];
NSLog ("%i",count);
对于功能数量:
No tool or code in my knowledge
于 2013-05-03T13:01:07.433 回答
-1
ls、grep 和 wc 是你的朋友。ls 统计文件,grep 统计函数,wc 统计每个文件的行数。
于 2013-05-03T12:53:24.357 回答