i sucessfully create folder in sdcard by using following code
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
function(fileSys) {
fileSys.root.getDirectory("main", {create: true,exclusive: false},
function(directory) {
console.log("Directory has been created");
}, createError);
}, createError);
Now i want create another folder in main folder so how i create child folder in sdcrard in phonegap?