Java examples for File Path IO:File Path
Create path from String using Paths
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:/"); } }