moonbeams 发表于 2023-2-27 11:39:56

第一次课后作业求助,用的vscode,总是报错

本帖最后由 moonbeams 于 2023-2-27 11:44 编辑

源代码如下:
#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,target;

      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;

      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);//会在这里报错:Segmentation fault;权限不够,发不了图片

      _findclose(handle);
}

int main()
{
      char path = ".";

      printf("计算中...\n");

      findAllCodes(path);
      findALLDirs(path);

      printf("目前你总共写了 %ld 行代码!\n\n", total);
      system("pause");

      return 0;
}

权限不够发不了图片,报错内容在上面注释了

又要入门到放弃 发表于 2023-3-6 14:42:42

你好 我的也是这里出了错,我也是VS,报的错误0xC0000005: 写入位置 0xFFFFFFFFB3FCE7F0 时发生访问冲突,如果你的也是请问你现在解决了吗?

sfqxx 发表于 2023-5-14 19:28:21

根据代码中的注释,“Segmentation fault”是一个权限不够的错误。通常情况下,访问了系统保护内存区域导致的。但是,在这个实现中,这种错误可能会发生在进行目录遍历查找时。具体来说,当处理嵌套目录的过程中,可能会出现路径超长的情况,导致数组越界或者缓冲区溢出,从而访问到系统保护内存区域,使程序中止并报“Segmentation Fault”错误。

为了改正这一点,可以考虑使用更加安全的字符串拼接方式,例如 strncat 或者 snprintf 函数,来保证拼接后字符串长度不会超过指定的范围。此外,还可以在代码开头 #define MAX 更改为更大的值,以便能够容纳更长的路径名。
页: [1]
查看完整版本: 第一次课后作业求助,用的vscode,总是报错