fopen 以 stdin 作为文件名参数
我被要求编写一个程序,基本上解析给它的文件,并重定向标准输入,如下所示:
myProg 参数1 参数2 参数3 < theFileToParse
我正在尝试使用 fopen 函数来打开给定的文件,但我不明白应该在“const char * filename”参数中给出什么。
I was requested to write a program the basically parses the file given to it, with redirecting the stdin, like this:
myProg param1 param2 param3 < theFileToParse
I'm trying to use the fopen function in order to open the given file, but i don't understand what should i give it in the 'const char * filename' argument.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不需要打开该文件。您的程序有一个名为
stdin
的特殊值,它包含进程标准输入流的句柄。您可以像使用文件句柄一样使用它,例如:或:
You don't need to open the file. Your program has a special value called
stdin
which contains a handle to the process's standard input stream. You can use this just as you would a file handle, for example:or:
您根本不应该打开任何内容,因为标准输入已经重定向,因此您可以简单地将此标准输入句柄与标准文件函数一起使用,即:
You should not open anything at all, since stdin is already redirected, therefore you can simply use this stdin handle with standard file functions, i.e.:
使用 freopen。
来自 Unix 手册页:
use freopen.
From Unix man page: