String path = request.getRealPath("");
String[] imgtype = {".jpg",".jpeg",".bmp",".png",".gif"};
for(String type : imgtype)
{
File f=new File(path,"images/"+userinfo.getId()+type);
//檢查是否存在
if(f.exists())
{
f.delete();//刪除文件
break;
}
}
String[] imgtype = {".jpg",".jpeg",".bmp",".png",".gif"};
for(String type : imgtype)
{
File f=new File(path,"images/"+userinfo.getId()+type);
//檢查是否存在
if(f.exists())
{
f.delete();//刪除文件
break;
}
}