Following is my file write method in andriod. I want to know where my file is exactly written. I tried to find in my phone storage. But I cannot find. Please help me.
void writeFile(String file, String data, boolean append){
        try {
            FileOutputStream fos;
            if (append){
                fos = openFileOutput(file, Context.MODE_APPEND);            
            }
            else 
                fos = openFileOutput(file, Context.MODE_PRIVATE);
            fos.write(data.getBytes());
            fos.close();                
        } catch (Exception e) {
            e.printStackTrace();                
        }   
    }
 
     
     
    