You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/01/23 12:05:04 UTC

[GitHub] gelks opened a new issue #290: @ symbol in directory name causes it to become a FileEntry

gelks opened a new issue #290: @ symbol in directory name causes it to become a FileEntry
URL: https://github.com/apache/cordova-plugin-file/issues/290
 
 
   When running the below code
   
   ```
     listDir(path){
       window.resolveLocalFileSystemURL(path,
         function (fileSystem) {
           var reader = fileSystem.createReader();
           reader.readEntries(
             function (entries) {
               console.log(entries);
             },
             function (err) {
               console.log(err);
             }
           );
         }, function (err) {
           console.log(err);
         }
       );
     }
   ```
   
   Any folder names that contain an @ symbol become a file incorrectly
   
   <img width="497" alt="screen shot 2019-01-23 at 12 02 04 pm" src="https://user-images.githubusercontent.com/39656259/51605348-bea10800-1f06-11e9-80d3-5c13c2f26794.png">
   
   Despite containing multiple files
   
   <img width="690" alt="screen shot 2019-01-23 at 12 02 32 pm 1" src="https://user-images.githubusercontent.com/39656259/51605381-daa4a980-1f06-11e9-9e80-cc0ad73babaf.png">
   
    Any directories without an @ in their name are unaffected
   
   <img width="507" alt="screen shot 2019-01-23 at 12 03 50 pm" src="https://user-images.githubusercontent.com/39656259/51605456-02940d00-1f07-11e9-87e0-ea2110225858.png">
   
   Any assistance would be greatly appreciated

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org