bool createFolderPath(QString folderpath)
{
QDir dir;
if (!dir.exists(folderpath))
{
bool is_Create = dir.mkpath(folderpath);
if (!is_Create)
{
cout << (QString("创建文件夹失败!文件夹路径:%1").arg(folderpath));
return false;
}
}
return true;
}