이미지 파일을 sdcard에 저장하는 로직을 만들었습니다.
그런데 단말기상에서 전혀 반영이 안되어 저장이 잘못되었나 싶었는데
단말기전원을 껐다켜고나니 로직에서 생성했던 폴더와 파일이 보였습니다.
리로드하는 로직을 넣어주어야하는건가요?
그렇지 않으면 단순히 자바파일생성로직이 틀린걸까요?
    protected void savePic(){
        FileOutputStream out;
        try {             
            File file = new File(mDir);
            if (!file.exists()){
                File newdir = new File(mDir);
                newdir.mkdir();
            }
            out = new FileOutputStream(mPath);               
            mBitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);           
           
            new AlertDialog.Builder(this)
            .setMessage("Saved in the name of " + mFile)
            .setPositiveButton("OK", null)
            .show();
           
            try {
                out.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }