如何在按一个按钮就创建文件夹,根据当前系统的年和月创建,在年的文件夹中创建各月的文件夹, 再在月的文件夹中日的.txt
每次创建时并判断是否已有该文件,若有就不创建。
------解决方案--------------------
------解决方案--------------------
- C/C++ code
QDir *temp = new QDir; bool exist = temp->exists("D://temp"); if(exist) QMessageBox::warning(this,tr("创建文件夹"),tr("文件夹已经存在!")); else { bool ok = temp->mkdir("D://temp"); if( ok ) QMessageBox::warning(this,tr("创建文件夹"),tr("文件夹创建成功!")); }