gpt4 book ai didi

c - 如何使用 C 覆盖文件中的结构?

转载 作者:太空宇宙 更新时间:2023-11-04 01:38:02 25 4
gpt4 key购买 nike

我正在将结构保存到 .dat 文件中。假设我必须编辑一个特定的结构,我将如何进行?我做了以下事情:

ptFile = fopen("funcionarios.dat", "ab+");

fseek(ptFile, index*sizeof(strFunc), SEEK_SET); //places the pointer at the struct I want
fwrite(&newStruct, sizeof(strFunc), 1, ptFile); //adds the new struct

所以,如您所见,我想用 newStruct 更新我的文件。

fwrite 函数返回 1,但它不会替换我想要的行(也不会替换相邻行,以防我使用了丢失的索引),并且它不会向文件添加新结构。它什么都不做!

有什么想法吗?

我通过读取所有结构、用我的 newStruct 替换索引结构并使用所有结构写入文件来完成这项工作,但我正在寻找一种更好的方法来做到这一点。

提前致谢。

最佳答案

fopen(.., "ab+") 要求追加模式:

   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.

您可能需要 r+ 模式,矛盾的是它也意味着写入:

   r+     Open for reading and writing.  The stream is
positioned at the beginning of the file.

关于c - 如何使用 C 覆盖文件中的结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11024822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com