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/02/19 13:54:04 UTC

[GitHub] mbohlaender opened a new issue #294: FileEntry - getFile error code 5 for files with : in filename on android

mbohlaender opened a new issue #294: FileEntry - getFile error code 5 for files with : in filename on android
URL: https://github.com/apache/cordova-plugin-file/issues/294
 
 
   When calling getFile() we are getting an error if we want to open a file with a double point : in the name.
   
   We tried:
   ```
   var path = "sync/data/Wichtige Dokumente/Test:mehrseitiges PDF SO.pdf"
   directoryEntry.getFile(path, {create: false}, ..);
   ```
   or
   ```
   var path = "sync%2Fdata%2FWichtige%20Dokumente%2FTest%3Amehrseitiges%20PDF%20SO.pdf";
   directoryEntry.getFile getFile(path, {create: false}, ..);
   ```
   
   but we always get the error code 5.
   Any ideas?

----------------------------------------------------------------
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