QFile不会创建该文件

时间:2013-06-09 18:16:41

标签: qt

我正在写一个简单的程序。该程序有2个QStrings设置有以下变量:文件的路径和名称,有一个第三个QString,后来我用它来将前2个QString的追加结果放在一起。我想做的是追加2 QStrings并将它们放在appendAll QString中,然后将appendAll QString发送到QFile变量构造函数。现在,当我这样做时,会打印“无法创建文件”,这是我使用的代码:

#include <QString>
#include <QTextStream>
#include <QFile>

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


    QTextStream output(stdout);

    QString location = "/home/mahmoud/Destkop";
    QString name = "mahmoud.txt";
    QString appendAll;

    if( !location.endsWith("/") )
    {
        location.append("/");
    }

    appendAll = location.append(name);

    output << appendAll << endl;

    QFile myFile(appendAll);

    if(myFile.open(QIODevice::WriteOnly | QIODevice::Text ))
    {
        output << "File Has Been Created" << endl;
    }
    else
    {
        output << "Failed to Create File" << endl;
    }

    QTextStream writeToFile(&myFile);

    writeToFile << "Hello World" << endl;

    myFile.close();

    return a.exec();
}

但是当我将字符串直接输入到它打印的同一程序中的QFile变量构造函数中时,“文件已经创建”并且我在桌面上找到它,下面的代码工作正常:

QFile myFile("/home/mahmoud/Desktop/mahmoud.txt");

if(myFile.open(QIODevice::WriteOnly | QIODevice::Text ))
{
    output << "File Has Been Created" << endl;
}
else
{
    output << "Failed to Create File" << endl;
}

我希望能够拥有QStrings并附加它们并将它们发送到QFile变量构造函数,有关如何解决我的问题的任何建议吗?谢谢

2 个答案:

答案 0 :(得分:7)

不要对此文件系统位置进行硬编码。相反,在Qt4中你应该使用QDesktopServices

QString location = 
    QDesktopServices::storageLocation(QDesktopServices::DesktopLocation);

在Qt5中,它是QStandardPaths

QString location = 
    QStandardPaths::writableLocation(QStandardPaths::DesktopLocation);

这很重要,因为/ home / username / Desktop不能保证是用户的桌面文件夹。

答案 1 :(得分:1)

您的代码中存在输入错误:Destkop应为Desktop。 Qt无法在不存在的目录中创建文件。