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: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
