Files
HaE/burp/file/FileExists.java

19 lines
257 B
Java
Raw Normal View History

2020-11-27 03:48:28 +08:00
package burp.file;
import java.io.File;
public class FileExists {
/*
* 判断文件是否存在
*/
public Boolean fileExists(String fileName) {
File file = new File(fileName);
if(file.exists()){
return true;
}
return false;
}
}