如何用Java判断一个文件或目录是否存在
2023-07-06
File f=new File(“C:\\entityBean”);
if(f.exists())
System.out.println(“exist”);
else
System.out.println(“not exist”);
如何用Java判断一个文件或目录是否存在2023-07-06 File f=new File(“C:\\entityBean”); if(f.exists()) System.out.println(“exist”); else System.out.println(“not exist”); 相关内容: |