Skip to content
Snippets Groups Projects

RestArea - 13515064 - Tasya

Open Tasya requested to merge if3110-restarea/TugasBesar2_2017:master into master
Compare and
129 files
+ 7783
128
Preferences
Compare changes
Files
129
 
package org.restarea.helper;
 
 
import java.io.File;
 
 
public class FileChecker {
 
public static boolean checker(String filename) {
 
boolean exist = false;
 
File image = new File(filename);
 
if(image.exists()) {
 
exist = true;
 
}
 
return exist;
 
}
 
}