Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

closed as not a real question by Robert Harvey Jan 21 at 4:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.