为什么创建不了文件
File file2 = new File("C:\\Users\\涛某\\Desktop\\日常文件\\日记1.txt");
if (!file2.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}else {
file2.delete();
}