我想知道是否可以一次创建带有目录的文件。例如我想创建文件脚本/myFile.txt。
我写了这样的代码:
QFile _file( path );
QDir _dir;
// check if "scripts" folder exists
int _dirExists = _dir.exists( "scripts" );
// if not, create it
if( !_dirExists )
_dir.mkdir( "scripts" );
// open file in write mode (and text mode)
int _fileOpened = _file.open( QIODevice::WriteOnly | QIODevice::Text );
if( !_fileOpened ) {
// ...
但我不得不使用 QDir 类,我不喜欢它的样子。我不明白为什么 QFile 不像在大多数此类框架中那样自己创建必要的目录。或者也许我错过了什么?