- 论坛徽章:
- 84
|
原帖由 emmoblin 于 2009-10-13 23:36 发表 ![]()
用rw打开,然后用seek定位就行了
提醒:fopen 没有 rw ,用rw和r一样;读写是r+
DESCRIPTION
The fopen() function opens the file whose name is the string pointed to by path and associates a stream with it.
The argument mode points to a string beginning with one of the following sequences (Additional characters may follow these sequences.):
r Open text file for reading. The stream is positioned at the beginning of the file.
r+ Open for reading and writing. The stream is positioned at the beginning of the file.
w Truncate file to zero length or create text file for writing. The stream is positioned at the beginning of the file.
w+ Open for reading and writing. The file is created if it does not exist, otherwise it is truncated. The stream is positioned at the begin-
ning of the file.
a Open for appending (writing at end of file). The file is created if it does not exist. The stream is positioned at the end of the file.
a+ Open for reading and appending (writing at end of file). The file is created if it does not exist. The initial file position for reading
is at the beginning of the file, but output is always appended to the end of the file. |
|