java 根据文件名判断文件是不是存在
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 根据文件名判断文件是不是存在相关的知识,希望对你有一定的参考价值。
给一个指定的文件名,在指定的路径下判断该文件是否存在
File类自带判断文件(或者路径)是否存在的方法。举个例子:
String filename = "test.txt";
File file = new File(path+filename);
if(file.exists())
System.out.println("文件"+filename+"存在");
else
System.out.println("文件"+filename+"不存在")
参考技术A File f = new File("c:\*.*")
if(!file.exists())
try
file.createNewFile();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
参考技术B String path="";
File file=new File(path);
if(file.exists())
参考技术C 我也想问这个问题啊
以上是关于java 根据文件名判断文件是不是存在的主要内容,如果未能解决你的问题,请参考以下文章