Hi friends,
I want to create a new folder in Qml…So i found out it via Qt…..so i want to integrate this below Qt C++ with Qml…..How is it possible…

QDir dir(“path/to/dir”);
if (!dir.exists()) { dir.mkpath(”.”);
}
Or else,is there any options for creating new folder directly in Qml…Please suggest a solutions.Thanks in advance.