public boolean isExistFile(String a_sFilePath) {
    boolean bIsExist = false;
    File oFile = new File(a_sFilePath);
    if(oFile != null) {
        bIsExist = oFile.exists();
    }
    return bIsExist;
}

 

 

펌(원본) : http://nugacity.tistory.com/27