欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Qt每天一例】2.在文件末尾追加字符串

程序员文章站 2022-05-18 14:41:39
...

需求:在文件末尾追加字符串

#include <QCoreApplication>
#include <QFile>


void demo()
{
    //声明文件对象
    QFile file;
    //设置文件路径
    file.setFileName("c:/1.txt");
    //打开 设置读写权限
    if(file.open(QIODevice::ReadWrite | QIODevice::Text))
    {
      //移动到文件末端
      file.seek(file.size());
      //写文件
      file.write("helloworld");
      //关闭
      file.close();
    }
}

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    demo();
    return a.exec();
}