std::fopen
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
FILE *fopen( const char *filename, const char *mode ); |
||
表示
filename
打开一个文件,并返回一个文件流关联的文件。 mode
用于确定文件访问模式. 原文:
Opens a file indicated by
filename
and returns a file stream associated with that file. mode
is used to determine the file access mode. [编辑] 参数
filename | - | 文件名称相关联的文件流
原文: file name to associate the file stream to | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mode | - | 空字符结尾的字符串,确定文件的访问模式
原文: null-terminated character string determining file access mode
|
[编辑] 返回值
打开的文件流上的成功,失败的NULL上
原文:
Opened file stream on success, NULL on failure
[编辑] 另请参阅
关闭一个文件 (函数) | |
实际的文件同步输出流 原文: synchronizes an output stream with the actual file (函数) | |
打开一个现有的流用不同的名称 原文: open an existing stream with a different name (函数) | |
C documentation for fopen
|