String destine="/data/local/qt/";
File fileDestine =new File(destine);
fileDestine.mkdir();
Note: trying with C++ will work.
QDir dir;QString local="/data/local/qt/"if (!dir.exists(local)){dir.mkpath(local);dir.mkdir(local);}Anyone know if permission is not assigned yet?