2010년 11월 1일 월요일

[Android] How to check if file is a directory ?

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

        return file.isDirectory();
    }
}

댓글 없음:

댓글 쓰기