Evolution-36 / cordova-plugin-file-opener2

Cordova plugin file opener based on pwlin's plugin. This plugin is updated to work with Android Oreo. This plugin was cloned because pwlin's plugin did not support writing access on Oreo.
MIT License
3 stars 4 forks source link

"File not found" when file name contains space #1

Closed hordesalik closed 6 years ago

hordesalik commented 6 years ago

When I'm trying to open a file with name containing " " charachter - "File not found" error appears

Langstra commented 6 years ago

What device and version of Android are you using?

hordesalik commented 6 years ago

Nokia 3, Android 8.0. Note: " " charachter is a "space"

Langstra commented 6 years ago

Could you try using var filePath = decodeURIComponent(filePath) and then use filePath to open the file?

hordesalik commented 6 years ago

It works. Thanks.