带你学C带你飞S1E1
S1E1统计代码该怎么用。我编译运行后显示我总共写了0行代码。 发代码 #include <stdio.h>#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#define MAX 256
long total;
int countLines(const char *filename);
int isCode(const char *filename);
void findAllDirs(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;
}
int isCode(const char *filename)
{
int length;
length = strlen(filename);
if (!strcmp(filename + (length - 2), ".c"))
{
return 1;
}
else
{
return 0;
}
}
void findAllDirs(const char *path)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
if ((dp = opendir(path)) == NULL)
{
fprintf(stderr, "The path %s is wrong!\n", path);
return;
}
chdir(path);
while ((entry = readdir(dp)) != NULL)
{
lstat(entry->d_name, &statbuf);
if (!strcmp(".", entry->d_name) || !strcmp("..", entry->d_name))
continue;
if (S_ISDIR(statbuf.st_mode))
{
findAllDirs(entry->d_name);
}
else
{
if (isCode(entry->d_name))
{
total += countLines(entry->d_name);
}
}
}
chdir("..");
closedir(dp);
}
int main()
{
char path = ".";
printf("计算中...\n");
findAllDirs(path);
printf("目前你总共写了 %ld 行代码!\n\n", total);
return 0;
} 代码是没错的,但是我不知道怎么运行 dev c++的话
F11 如何利用这段代码去统计其他代码的行数呢? 本帖最后由 青出于蓝 于 2021-8-7 15:56 编辑
这个程序只会统计后缀名为.c的程序(同一路径下)
我用的是Xcode if (!strcmp(filename + (length - 2), ".c"))
看这里,这里只会匹配.c程序
例如
main.c 可以
main.cpp 不可以 嗯,我之前保存的代码是main.c
但我不知道怎么用这段代码去统计我写的其他代码的行数 wangishero 发表于 2021-8-7 16:08
嗯,我之前保存的代码是main.c
但我不知道怎么用这段代码去统计我写的其他代码的行数
把其他文件的后缀改为.c
2
wangishero 发表于 2021-8-7 16:08嗯,我之前保存的代码是main.c
但我不知道怎么用这段代码去统计我写的其他代码的行数
这些文件必须在同一路径 其他文件的后缀是.c了,可是如何才能在同一路径,我试着把文件放在共同的文件夹里却还是不行 小甲鱼的视频里是在终端操作,可是我是直接在Xcode里编译运行的 wangishero 发表于 2021-8-7 19:08
小甲鱼的视频里是在终端操作,可是我是直接在Xcode里编译运行的
都一样!Xcode也可以,跟这个没关系
你运行结果是0,是因为同目录下没有.c后缀的文件,或者有但是空的 那怎么弄到同目录里
页:
[1]