有两个QFile-pointer
指向同一个文件,它们属于不同的线程。一个将数据写入文件,另一个读取。但我只想进行一项操作,读取或写入。
if(!this->file->exists()) {
qDebug()<<"The file is not exists";
}
if(this->file->isOpen()) {
qDebug()<<"The file is open";
}
让我换一种说法:如何检查文件是否打开?
我测试file.isOpen()
?它不起作用。我怎样才能做到这一点?