bie33333 发表于 2020-9-16 15:50:36

为啥不能open

习题一的那个代码

运行以后是下面这个样子

计算中...
Can not open the file:/.
Can not open the file:/./1
目前你共写了 0 行代码

请按任意键继续. . .

昨非 发表于 2020-9-16 15:55:33

你选的文件夹没有访问权限吗{:10_245:}

bie33333 发表于 2020-9-16 16:13:05

昨非 发表于 2020-9-16 15:55
你选的文件夹没有访问权限吗

右键管理员取得权限?我试过了没用呀

baige 发表于 2020-9-16 16:28:47

看一下你那些文件的后缀名,如果是cpp就改成c

LuLD 发表于 2020-9-16 16:53:56

本帖最后由 LuLD 于 2020-9-16 16:55 编辑

把你代码发出来吧,看是不是书写的问题


刚才处理了一个 缩进不规范导致计算 是0行代码的

bie33333 发表于 2020-9-16 18:12:08


#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",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);
       
        _findclose(handle);
}

int main()
{
        char path = ".";
       
        printf("计算中...\n");
       
        findAllCodes(path);
        findALLDirs(path);
       
        printf(" 目前你共写了 %ld 行代码 \n\n",total);
        system("pause");
       
        return 0;
}

bie33333 发表于 2020-9-16 18:15:53

bie33333 发表于 2020-9-16 18:12


有没有可能和我的盗版win10有关系{:10_266:}

bie33333 发表于 2020-9-16 18:34:53

bie33333 发表于 2020-9-16 18:15
有没有可能和我的盗版win10有关系

应该是我代码的问题,因为我把鱼老师的代码复制过来是能用的
{:10_285:}

Twilight6 发表于 2020-9-16 19:02:47

bie33333 发表于 2020-9-16 18:12




是甲鱼哥的原代码吗?

LuLD 发表于 2020-9-23 13:13:33

void findAllCodes(const char *path) 里sprintf(target,"%s/%s",path,fa.name);少了一个 %s
void findAllCodes(const char *path) 里if((handle = _findfirst(strcat(thePath,"/*.c"),&fa)) != -1L)少了字符

void findALLDirs(const char *path) 里 do()while 循环里 第二个if 的缩进应该与第一if平齐
   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);


最后提醒一下,缩进要标准,一般为 四个空格或是一个Tab(键盘上字母Q旁边)

LuLD 发表于 2020-9-23 13:18:09

Twilight6 发表于 2020-9-16 19:02
是甲鱼哥的原代码吗?

手抄版的,字符有漏的,小甲鱼的源代码 windows 版本只是声明有问题(void findALLFiles(const char* path);,引用和定义是findALLDirs(path)) ,但是不影响手抄和运行

LuLD 发表于 2020-9-29 14:59:16

哥们儿,看 10楼发的,你再试一下,你的最佳答案给的楼层不对,我不知道你理解了没有
页: [1]
查看完整版本: 为啥不能open