springboot 在windows 系统下删除指定路径下文件
/**
* 删除指定文件
* * @param f1
*
* @throws IOException
*/
public static void dele(File f1) throws IOException {
boolean delete = f1.delete();
System.out.println("dele" + f1);
}