How to get FileInputStream for internal memory files in Android ? The file is in my custom folder made in application space
问题 How to get FileInputStream for file in internal memory in android which is not inside applications default file directory. I have created new directory in my application space. So openFileInput("filename") will only work for files in getFilesDir() . And openFileInput("filename") do not accept argument with path separaters "/" so I can change it to ../myfolder/. Is there any way to get a FileInputStream on this ? .. Note: Using normal APIs File = new File(... ) gives permission denied errors.