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

am working with the directoryReader in phonegap 1.9.0, I want to list all the audio files that is stored in the sd card.

For that I am creating a directoryReader object and calls the successReader function. Inside the function, I am checking whether the current content got is a file or a directory.

  • If it is a directory I am creating a new directoryReader object and calls the same function.

  • If the content of the directory is a file, then it will check the extension of the file to determine whether it is an audio file or not.

  • If it is an audio file then I will append the file name to a list where when i choose a list the directory reader action has to stop and print the selected files full path.

If i again hits the button to select the audio files, then it has to start a new activity. But instead of starting a new activity it just continues the previous process and apppends the remaining audio files that are left.

How can I control the directory reader action?

The main parts of my code are the following :

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
            onFileSystemSuccess, onFileSystemFail);

function onFileSystemSuccess(fileSystem) {
    fs = fileSystem;

    var directoryReader = fileSystem.root.createReader();
    directoryReader.readEntries(successReader, errorReader);
}

function successReader(entries) {
    var i;
    for (i = 0; i < entries.length; i++) {
        if (entries[i].isFile == true) {

            entries[i].file(filedets, errorReader);
        }
        else if (entries[i].isDirectory == true) {
            var dirctoryReader = entries[i].createReader();
            dirctoryReader.readEntries(successReader, errorReader);
        }
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.