如何检查文件夹是否存在

时间:2013-03-22 13:25:37

标签: java

我正在使用新的Java 7 IO功能,实际上我试图接收文件夹的所有xml文件。但是当文件夹不存在时会引发异常,如何检查该文件夹是否与新IO一起存在?

public UpdateHandler(String release) {
    log.info("searching for configuration files in folder " + release);
    Path releaseFolder = Paths.get(release);
    try(DirectoryStream<Path> stream = Files.newDirectoryStream(releaseFolder, "*.xml")){

        for (Path entry: stream){
            log.info("working on file " + entry.getFileName());
        }
    }
    catch (IOException e){
        log.error("error while retrieving update configuration files " + e.getMessage());
    }


}

10 个答案:

答案 0 :(得分:223)

使用java.nio.file.Files

Path path = ...;

if (Files.exists(path)) {
    // ...
}

您可以选择传递此方法LinkOption值:

if (Files.exists(path, LinkOption.NOFOLLOW_LINKS)) {

还有一种方法notExists

if (Files.notExists(path)) {

答案 1 :(得分:182)

非常简单:

new File("/Path/To/File/or/Directory").exists();

如果你想确定它是一个目录:

File f = new File("/Path/To/File/or/Directory");
if (f.exists() && f.isDirectory()) {
   ...
}

答案 2 :(得分:47)

检查新IO是否存在目录:

if (Files.isDirectory(Paths.get("directory"))) {
  ...
}
如果文件是目录,则

isDirectory返回true; false如果文件不存在,不是目录,或者无法确定文件是否是目录。

请参阅:documentation

答案 3 :(得分:5)

您需要将路径转换为File并测试存在:

for(Path entry: stream){
  if(entry.toFile().exists()){
    log.info("working on file " + entry.getFileName());
  }
}

答案 4 :(得分:4)

无需单独调用exists()方法,因为isDirectory()会隐式检查目录是否存在。

答案 5 :(得分:4)

从文件夹目录的字符串

生成文件
String path="Folder directory";    
File file = new File(path);

并存在使用方法 如果你想生成文件夹,你可以使用mkdir()

if (!file.exists()) {
            System.out.print("No Folder");
            file.mkdir();
            System.out.print("Folder created");
        }

答案 6 :(得分:3)

import java.io.File;
import java.nio.file.Paths;

public class Test
{

  public static void main(String[] args)
  {

    File file = new File("C:\\Temp");
    System.out.println("File Folder Exist" + isFileDirectoryExists(file));
    System.out.println("Directory Exists" + isDirectoryExists("C:\\Temp"));

  }

  public static boolean isFileDirectoryExists(File file)

  {
    if (file.exists())
    {
      return true;
    }
    return false;
  }

  public static boolean isDirectoryExists(String directoryPath)

  {
    if (!Paths.get(directoryPath).toFile().isDirectory())
    {
      return false;
    }
    return true;
  }

}

答案 7 :(得分:2)

File sourceLoc=new File("/a/b/c/folderName");
boolean isFolderExisted=false;
sourceLoc.exists()==true?sourceLoc.isDirectory()==true?isFolderExisted=true:isFolderExisted=false:isFolderExisted=false;

答案 8 :(得分:0)

我们可以检查文件和文件夹。

ModuleNotFoundError: No module named 'xlrd'

答案 9 :(得分:0)

SonarLint开始,如果已经有了路径,请使用path.toFile().exists()代替Files.exists,以获得更好的性能。

  

Files.exists方法在JDK 8中的性能明显较差,并且在用于检查实际上不存在的文件时会大大降低应用程序的速度。

  Files.notExistsFiles.isDirectoryFiles.isRegularFile也是如此。

不兼容的代码示例:

Path myPath;
if(java.nio.Files.exists(myPath)) {  // Noncompliant
    // do something
}

兼容解决方案:

Path myPath;
if(myPath.toFile().exists())) {
    // do something
}