Get file full path in java

后端 未结 2 1574
滥情空心
滥情空心 2021-02-09 02:46

When I pass File file to a method I\'m trying to get its full path like file.getAbsolutePath(); I always get the same result no matter which one I use

2条回答
  •  梦如初夏
    2021-02-09 03:05

    This quote from the Javadoc might be helpful:

    A pathname, whether abstract or in string form, may be either absolute or relative. An absolute pathname is complete in that no other information is required in order to locate the file that it denotes. A relative pathname, in contrast, must be interpreted in terms of information taken from some other pathname. By default the classes in the java.io package always resolve relative pathnames against the current user directory. This directory is named by the system property user.dir, and is typically the directory in which the Java virtual machine was invoked.

    I interpret this so that if you create your File object with new File("filename") where filename is a relative path, that path will not be converted into an absolute path even by a call to file.getAbsolutePath().

    Update: now that you posted code, I can think of some ways to improve it:

    • you could use a FilenameFilter to find the desired files,
    • note that list and listFiles return null for non-directory objects, so we need an extra check for that,
    • you could also use listFiles() again in the inner loop, thus avoiding the need to create new File objects with hand-assembled paths. (Btw note that appending \\ manually to the path is not portable; the proper way would be to use File.separator).

    The end result is

    private static void doSomethingToDirectory(File factDir) throws IOException {
      if (factDir.isDirectory()) {
        for (File file : factDir.listFiles()) {
          if (file.isDirectory()) {
            for (File child : file.listFiles(new MyFilter())) {
              process(child);
            }
          }
        }           
      }
    }
    
    class MyFilter implements FilenameFilter {
      public boolean accept(File dir, String name) {
        return name.equals(TEMP_COMPARE_FILE);
      }
    }
    

    Note that this code mimics the behaviour of your original piece of code as much as I understood it; most notably, it finds the files with the proper name only in the direct subdirectories of factDir, nonrecursively.

提交回复
热议问题