fopen()返回NULL,文件存在于当前目录中

时间:2016-05-29 15:29:58

标签: c fopen

我无法做到这一点 - 我的工作目录中有一个文件input1.txt,但我不能fopen()

我的目录结构(Xcode):

主要():

const char* fileName = "input1.txt";
if (argc > 1)
{
    fileName = argv[1];
}
printf("Opening file: %s\n", fileName);

clock_t timer = clock();

HashMap* map = hashMapNew(10);

// --- Concordance code begins here ---
// Be sure to free the word after you are done with it here.
FILE *in;
if ( (in = fopen(fileName, "r") ) == NULL ) {
    printf ("Can’t open %s for reading. %s\n", fileName, strerror(errno));
}
char* w = nextWord(in);
printf("%s",w);

nextWord():

char* nextWord(FILE* file)
{
    int maxLength = 16;
    int length = 0;
    char* word = malloc(sizeof(char) * maxLength);
    while (1)
    {
        char c = fgetc(file);
        if ((c >= '0' && c <= '9') ||
            (c >= 'A' && c <= 'Z') ||
            (c >= 'a' && c <= 'z') ||
            c == '\'')
        {
            if (length + 1 >= maxLength)
            {
                maxLength *= 2;
                word = realloc(word, maxLength);
            }
            word[length] = c;
            length++;
        }
        else if (length > 0 || c == EOF)
        {
            break;
        }
    }
    if (length == 0)
    {
        free(word);
        return NULL;
    }
    word[length] = '\0';
    return word;
}

我收到错误:

  

无法打开input1.txt进行阅读。没有这样的文件或目录

为什么这不起作用?文件肯定在那里......

1 个答案:

答案 0 :(得分:0)

在Xcode中,您的项目“文件夹”更好地称为“组”,可能会也可能不会引用磁盘上的实际文件夹。组目录层次结构存储在项目设置中,并不一定与文件系统层次结构相对应(想想符号链接)。尝试右键单击其中一个文件,然后选择“在Finder中显示”以查看其在磁盘上的真实位置。

如果input1.txt实际上与调用函数文件不在磁盘上的同一目录中,请尝试通过Finder移动它,然后通过Xcode将其重新添加到项目中(File-&gt;“将文件添加到。 ..“)。

编辑:我刚刚找到了一个工具来同步你的组和文件结构。 Take a look at synx