when i was inserting the bitmap image to files directory, it showing file not found exception and it is showing Is a Directory.
Here is my code:
You are opening the directory itself for writing. This does not work. You need to specify a file within the directory, e.g.:
fos = new FileOutputStream(new File(mFolder, "myfile"));