You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Boston Dell-Vandenberg (JIRA)" <ji...@apache.org> on 2014/03/24 17:00:43 UTC

[jira] [Created] (CB-6335) Blackberry file plugin accessing file system returns no results

Boston Dell-Vandenberg created CB-6335:
------------------------------------------

             Summary: Blackberry file plugin accessing file system returns no results
                 Key: CB-6335
                 URL: https://issues.apache.org/jira/browse/CB-6335
             Project: Apache Cordova
          Issue Type: Bug
          Components: BlackBerry, Plugin File
    Affects Versions: 3.4.0
         Environment: File plugin 1.0.1, Blackberry 10.2.x emulator & device (Z10)
            Reporter: Boston Dell-Vandenberg


Trying to access the Blackberry shared folder and list it's contents but the file plugin is returning no entries (FileError Code 1).

blackberry.io.sandbox is set to false and the blackberry.io plugin is installed to access the shared folder path.

I have tested on both emulator and device (10.2) with the following code:

[code]
window.requestFileSystem(
      LocalFileSystem.PERSISTENT,
      1024 * 1024,
      function (fs) {

          fs.root.getDirectory(
            blackberry.io.sharedFolder,
            {},
            function(result) {
              var reader = result.createReader();
              reader.readEntries(
                function(entries) {
                  console.log(entries);
                },
                function (error) {
                  console.log('Failed to list directory contents: ', error);
                }
              );
            },
            function(error) {
              console.log('Error accessing shared folder');
            }
          );
      },
      function () {
        console.log('Error accessing local file system');
      }
    );
[code]



--
This message was sent by Atlassian JIRA
(v6.2#6252)