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 件のコメント:
コメントを投稿