Convert Path to File in Java

Description

The following code shows how to convert Path to File.

Example


/*from  w w w.j  ava 2s.c om*/
import java.nio.file.LinkOption;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

  public static void main(String[] args) throws Exception {
    Path path = Paths.get("users.txt");

    if (path.toFile().exists()) {
      System.out.println("Real path: "
          + path.toRealPath(LinkOption.NOFOLLOW_LINKS));
    } else {
      System.out.println("The file does not exist");
    }
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip