2010년 11월 1일 월요일

[Android] How to check if file exists ?

boolean checkIfFileExists(String filePath) {
    if (filePath != null) {
        File file = new File (filePath);

        return file.exists();
    }
}

댓글 없음:

댓글 쓰기