Android ファイルの存在チェック

Androidではファイル名(パスを含まない)だけで、ファイルの書き込み、読み込みができます。
Android ファイルの入出力(filesフォルダ)

ファイルの存在チェックもパスはいらないだろうと思っていたら、こちらはパスがいるのですね・・・
String filepath = this.getFilesDir().getAbsolutePath() + "/" +  "test.txt";
File file = new File(filepath);
boolean isExists = file.exists();
又は
File file = this.getFileStreamPath("test.txt");
boolean isExists = file.exists();

0 件のコメント: