Java如何判断目录是否存在呢?

重生 Java经验 发布时间:2024-03-01 21:54:01 阅读数:7294 1
下文笔者讲述判断目录是否存在的方法分享,如下所示

判断目录是否存在的实现思路

   借助File类的exists()方法检测路径是否存在
     并结合isDirectory()方法检测目录是否存在
     即可判断一个目录是否存在
例:
import java.io.File;

public class DirectoryExistsExample {
 public static void main(String[] args) {
    String directoryPath = "D:/path/to/directory";
    File directory = new File(directoryPath);
    if (directory.exists() && directory.isDirectory()) {
       System.out.println("目录存在");
    } else {
       System.out.println("目录不存在");
   }
  }
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaJingYan/202403/17093017738071.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者