String dirPath = "/home/oSsonGo";
File dirFile = new File(dirPath);
String fileList[] = dirFile.list();
for(int i = 0; i < fileList.length; i++) {
String chkFileNm = fileList[i];
if(chkFileNm.contains("test")) {
File delFile = new File(dirPath + File.separator + chkFileNm);
delFile.delete();
}
}
String dirPath = "/home/oSsonGo";
File dirFile = new File(dirPath);
String fileList[] = dirFile.list();
for(int i = 0; i < fileList.length; i++) {
String chkFileNm = fileList[i];
if(chkFileNm.startsWith("test_")) {
File delFile = new File(dirPath + File.separator + chkFileNm);
delFile.delete();
}
}