|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
#include <io.h>
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 256
long total;
int countLines(const char *filename);
void findALLCodes(const char *path);
void findALLFiles(const char *path);
int countLines(const char *filename)
{
FILE *fp;
int count = 0;
int temp;
if ((fp=fopen(filename,"r"))==NULL);
{
fprintf(stderr,"Can not open the file:%s\n",filename);
return 0;
}
while((temp=fgetc(fp))!=EOF)
{
if (temp=='\n')
{
count++;
}
}
fclose(fp);
return count;
}
void findALLCodes (const char *path)
{
struct _finddata_t fa;
long handle;
char thePath[MAX],target[MAX];
strcpy(thePath,path);
if((handle = _findfirst(strcat(thePath,"/*.c"),&fa))!=-1L)
{
do
{
sprintf(target,"%s/%s",path,fa.name);
total += countLines(target);
}while(_findnext(handle,&fa)==0);
}
_findclose(handle);
}
void findAllDirs(const char *path)
{
struct _finddata_t fa;
long handle;
char thePath[MAX];
strcpy(thePath,path);
if((handle =_findfirst(strcat(thePath,"/*"),&fa))==-1L)
{
fprintf(stderr,"The path %s is wrong!\n",path);
return;
}
do{
if(!strcmp(fa.name,".")||!strcmp(fa.name,".."))
continue;
if(fa.attrib == _A_SUBDIR)
{
sprintf(thePath,"%s,%s",path,fa.name);
findAllCodes(thePath);
findALLDirs(thePath);
}
}while (_findnext(handle,&fa)==0);
_findclose(handle);
}
int main ()
{ char path[MAX]=".";
printf("计算中...\n");
findALLCodes(path);
findALLDirs(path);
printf("目前你总共写了%ld行代码!\n\n",total);
system("pause");
return 0;
}
本帖最后由 jackz007 于 2024-4-10 16:13 编辑
检查一下编译命令,应该这么写: 如果写成了: 就会收到这样的错误信息。
建议楼主试一下这个代码: #include <io.h>
#include <direct.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#define MAX 256
long total ;
long countLines(const char * filename)
{
FILE * fp ;
long count = 0 , temp ;
if ((fp = fopen(filename , "r"))) {
while((temp = fgetc(fp)) != EOF) if (temp == '\n') count ++ ;
fclose(fp) ;
} else {
fprintf(stderr , "[错误]:无法打开文件:%s\n" , filename) ;
}
return count ;
}
void findAllCodes(const char * path)
{
struct _finddata_t fa ;
long handle , c , m ;
char thePath[MAX] , target[MAX] ;
strcpy(thePath , path) ;
strcat(thePath , "\\*") ; // 生成搜索目标字符串
if((handle = _findfirst(thePath , & fa)) != -1L) {
do {
for(m = 0 ; fa . name[m] ; m ++) ; // 取得字符串 fa 的长度 m
sprintf(target , "%s\\%s" , path , fa . name) ; // 为 fa 生成磁盘路径 target
if(fa . attrib == _A_SUBDIR) { // 如果 fa 是子目录
if(strcmp(fa . name , ".") && strcmp(fa . name , "..")) {
findAllCodes(target) ; // 递归
}
} else { // 如果 fa 是普通文件
if(! stricmp(& fa . name[m - 2] , ".c") || ! stricmp(& fa . name[m - 2] , ".h") || ! stricmp(& fa . name[m - 4] , ".cpp")) {
c = countLines(target) ; // 统计代码行数
printf("[%60s] : %ld\n" , target , c) ; // 屏显文件代码行数信息
total += c ; // 代码总行数累加
}
}
} while(! _findnext(handle , & fa)) ;
_findclose(handle) ;
}
}
int main(int argc , char * argv[])
{
char path[MAX] ;
if(argc > 1) strcpy(path , argv[1]) ; // 如果有命令行,就作为搜索起始目录
else getcwd(path , MAX) ; // 否则,以当前路径作为搜索起始目录
printf("计算中 ...\n") ;
findAllCodes(path) ;
printf("目前你总共写了 %ld 行代码!\n" , total) ;
system("pause") ;
}
|
|