code\\CL\\Desktop\\t
#include <stdio.h>
int main()
{
FILE* pf = fopen("test.txt", "w");//以写的方式打开文件
//. 表示当前路径
//.. 表示上一级路径
//FILE* pf = fopen("D:\\code\\CL\\Desktop\\test.txt", "w");//绝对路径
//FILE* pf = fopen(".\\..\\test.txt", "w");//相对路径(当前路径的上一级路径)
if (pf == NULL)
{
perror("fopen");
return 1;
}
else
{
printf("文件打开成功\n");
}
//写文件
//...
//关闭文件
fclo www.laipuhuo.com se(pf);
pf = NULL;
return 0;
}
int main()
{
FILE* pf = fopen("test.txt", "w");//以写的方式打开文件
//. 表示当前路径
//.. 表示上一级路径
//FILE* pf = fopen("D:\\code\\CL\\Desktop\\test.txt", "w");//绝对路径
//FILE* pf = fopen(".\\..\\test.txt", "w");//相对路径(当前路径的上一级路径)
if (pf == NULL)
{
perror("fopen");
return 1;
}
else
{
printf("文件打开成功\n");
}
//写文件
//...
//关闭文件
fclo www.laipuhuo.com se(pf);
pf = NULL;
return 0;
}
全部评论
相关推荐