gpt4 book ai didi

c - 指定文件扩展名

转载 作者:行者123 更新时间:2023-11-30 14:59:55 25 4
gpt4 key购买 nike

现在,我所拥有的是:

#include <stdio.h>
#include <conio.h>
#include <string.h>

int main()
{
char fname[100];
FILE* fp;
memset(fname, 0, 100);

/* ask user for the name of the file */
printf("enter file name: ");
gets(fname);

fp = fopen(fname, "w");

/* Checks if the file us unable to be opened, then it shows the
error message */
if (fp == NULL)
printf("\nError, Unable to open the file for reading\n");
else
printf("hello");
getch();
}

这个功能很好,但是有没有办法可以强制它保存为 .txt 或 .data 或其他格式?现在它只是保存为您输入的名称,没有扩展名。除了要求用户输入名称和扩展名之外,我想不出其他方法来做到这一点。我的意思是,它仍然可以很好地用于阅读/写作目的,我只是认为扩展会很好。

最佳答案

扩展我的评论:

strcat(fname, ".txt");

关于c - 指定文件扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42405403/

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