1.概要
用qt creater 开发,发现无法创建文件夹,这样管理多文件夹,就变得很麻烦;
能不能现在工程中创建文件夹呢,可以,但是如果里面不放文件的话,工程也不会管你,如果你加了文件,就可以了。
2.代码
#include <QCoreApplication>
#include <QVector>
#include <QDebug>
#include "./t1/a.h"//文件夹实验
int main(int argc, char *argv[])
{QCoreApplication a(argc, argv);T1 t1;int b = t1.add(2,3);qDebug() << "t1.add(2,3):"<<b;qDebug() << "hello word";return a.exec();
}
3.运行结果
t1.add(2,3): 5
hello word