function createDir()
{
    try
    {
        blackberry.io.dir.createNewDir("file:///store/home/user/FolderName");
        alert("createDir event fired succefully");
    }
    catch(ex)
    {
        alert("createDir event faces following error: "+ex);
    }

}
`    

i don't understand what i did wrong here => blackberry.io.dir.createNewDir("file:///store/home/user/FolderName"); whats the correct syntax?? the following error fires when bb goes to this code block: "Null". why?


this is weird. the finction is working when i do code like this. you might notice, i missed the '/' character there. but that is not the issue. first, i tried it that way too. someone care to answer this weird behavior?

function createDir()
{
    try
    {
        var path="file:///store/home/user/SomeFolderName/";
        blackberry.io.dir.createNewDir(path);
        alert("createDir event fired succefully");
    }
    catch(ex)
    {
        alert("createDir event faces following error: "+ex);
    }

}
link|improve this question
feedback

1 Answer

in config.xml - <feature id="blackberry.io.dir" /> is enabled?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.