안드로이드 앱에서 만든 파일은 어디에 저장되나요

실제 단말기는 갤3 입니다.

파일 폴더를 아무리 뒤져도 data/data/내가만든앱/files 를 찾을 수가 없네요.

어디에 숨었을까요.

꼭 log1.txt 를 봐야 합니다.


String fileName = "log1.txt";


 try
 {
 FileOutputStream outFs = openFileOutput(fileName,
 Context.MODE_APPEND);
 outFs.write(str1.getBytes());
 outFs.close();
 } catch (IOException e) {}