QFile file("../studentdata/students.txt");
file.open(QIODevice::WriteOnly| QIODevice::Text);
qDebug()<<file.isOpen()<<file.isReadable()<<file.isWritable();
I want to open the file students.txt with relative path, but the qDebug result is false false false