gpt4 book ai didi

C++ FileRead 用法

转载 作者:行者123 更新时间:2023-11-28 00:40:08 24 4
gpt4 key购买 nike

想向我的 Controller 添加一些 I/O 文本文件操作。写下我选择的参数:

    if ( FileExists("plik.txt") == true )
{

int text_file = FileOpen("text_file.txt", fmOpenWrite);
FileWrite(text_file, IntToStr(index_freq).c_str(),2);
FileWrite(text_file,"\r\n",strlen("\r\n"));
}

但是你能在那个例子中告诉我如何使用 FileRead 吗?我知道模式是

    FileRead(iFileHandle, &dRadius, sizeof(double));

但不能完全适合我的示例。写入文件的数据一列一列,长度为 1 或 2 个字符。

在此先感谢您的帮助

最佳答案

为什么不使用 iostream ?

std::ofstream ofs ("text_file.txt", std::ofstream::out);

ofs << index_freq <<std::endl;

ofs.close();

有关如何使用它们的更多信息 here

关于C++ FileRead 用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19271578/

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