Create path from String using Paths - Java File Path IO

Java examples for File Path IO:File Path

Description

Create path from String using Paths

Demo Code

import java.nio.file.Path;
import java.nio.file.Paths;

/**/*from w ww  . j  ava  2s  . c  om*/
 
 */
public class RecursionWalks {
    public static void main(String[] args) {
        Path path = Paths.get("C:/");
    }
}

Related Tutorials