package com.aohaichina.other;
import java.io.File;
import java.io.IOException;
public class FileName {
public static void main(String[] args) throws IOException {
String path = "D:\java\file";
File file = new File(path);
File filelist[] = file.listFiles();
for(File f : filelist){
String filename = f.getName();
if(filename.endsWith("jpg_temp")){
f.delete();
}
}
}
}



