在xcode中用c编程打开文件
我正在尝试编写一个文件来打开一个文件并在 C 中读取该文件的内容.我使用的是 xcode,但文件指针返回一个 null 值.
I am trying to write a file to open a file and read the contents of that file in C. I am using xcode but the file pointer returns a value null.
int main(int argc, char** argv)
{
FILE *fp;
fp=fopen("input.txt","r");
if (fp==NULL)
printf("error");
}
这将显示错误作为输出.有人可以帮我找到将文件 input.txt 放在项目中的正确位置吗?
This shows error as the output. Could someone help me to find the right place to put the file input.txt in the project?
该文件需要进入程序启动的当前目录".这是可配置的.在组和文件"窗格中,展开可执行文件"并选择您的可执行文件.按 Command-I 打开信息窗口.在常规"选项卡底部附近,您可以选择应用程序启动时的当前目录.
The file would need to go in the "current directory" where the program is launched. This is configurable. In the "Groups and Files" pane, expand "Executables" and pick your executable. Press Command-I to open the info window. Near the bottom of the "General" tab, you can select the current directory for when the application is launched.