Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

string - Using fopen with input filenames in C

At some point in my code, I want to read a name for a file that I will be creating (and/or editing) and I've come up with the following:

FILE *fp;
char filename[15];
fgets(filename, 15, stdin);
fp = fopen(filename, "a");
fprintf(fp, "some stuff goes here");
fclose(fp);

Even though that does compile and run, it does not create (or open, if I manually create it) the file specified by filename.
What would you suggest?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

fgets() stores the newline character read from stdin after reading a line of input. You need to strip it manually, e.g.

size_t len = strlen(filename);
if (len > 0 && filename[len - 1] == '
')
    filename[len - 1] = '';

You should also check that fopen() doesn't return NULL, which it will do if it was unable to open the file. I think using fprintf with a NULL file pointer is undefined behaviour.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...