我正在尝试做三件事:
- 加载 .txt 文件
- 将文件的内容打印到控制台。
- 用另一个名称再次保存它。
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
char text[500]; /* Create a character array that will store all of the text in the file */
char line[100]; /* Create a character array to store each line individually */
int inpChar;
FILE *file; /* Create a pointer to the file which will be loaded, to allow access to it */
char fileName[100]; /* Create a character array to store the name of the file the user want to load */
do {
printf("enter menu: [l]oad - [s]ave - [p]rint\n");
scanf("%c", &inpChar);
}
while((inpChar != 'l') && (inpChar != 's') && (inpChar !="p"));
if((inpChar == 'l'))
{
printf("Enter the name of the file containing ship information: ");
}
scanf("%s", fileName);
/*Try to open the file specified by the user. Use error handling if file cannot be found*/
file = fopen(fileName, "r"); /* Open the file specified by the user in 'read' mode*/
if(file == NULL){
printf("The following error occurred.\n");
}
else {
printf("File loaded. \n"); /* Display a message to let the user know
* that the file has been loaded properly */
}
do {
printf("enter menu: [l]oad - [s]ave - [p]rint\n");
scanf("%c", &inpChar);
}
while((inpChar != 'l') && (inpChar != 's') && (inpChar !='p'));
if((inpChar == 'p'))
{
file = fopen(fileName, "r");
fprintf(file, "%s", line);
fclose(file);
}
return 0;
}
我缺少控制台面板上的打印文本;它不起作用,并且代码中缺少保存选项。我该怎么办?