gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 17:00:36 25 4
gpt4 key购买 nike

我无法弄清楚这一点 - 我的工作目录中有一个文件 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;
}

我收到错误:

Can’t open input1.txt for reading. No such file or directory

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

最佳答案

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

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

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

关于c - fopen() 返回 NULL,文件存在于当前目录中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37511687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com