Get real path without following links in Java

Description

The following code shows how to get real path without following links.

Example


/*from   ww w  . j  a  v  a  2 s.  co  m*/
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");

    System.out.println("Real path: " + path.toRealPath(LinkOption.NOFOLLOW_LINKS));
  }
}




















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