Click here to watch in Youtube :
https://www.youtube.com/watch?v=kUx3NUpMw-4&list=UUhwKlOVR041tngjerWxVccw
DisplayDirectoryStructure.java
Click the below link to download the code:https://www.youtube.com/watch?v=kUx3NUpMw-4&list=UUhwKlOVR041tngjerWxVccw
DisplayDirectoryStructure.java
import java.io.File; import java.io.IOException; public class DisplayDirectoryStructure { private static final String SRC_FOLDER = "D:/work/java"; public static void main(String[] args) throws IOException { File file = new File(SRC_FOLDER); DisplayDirectoryStructure displayDirectoryStructure = new DisplayDirectoryStructure(); displayDirectoryStructure.displayDirStructure(file); } public void displayDirStructure(File file) throws IOException { System.out.println("Path = " + file.getAbsolutePath()); if (file.isDirectory()) { // list all the directory contents File files[] = file.listFiles(); for (File displayFile : files) { /* * Recursive call. */ displayDirStructure(displayFile); } } } }Output
Path = D:\work\java Path = D:\work\java\index.html Path = D:\work\java\jsp Path = D:\work\java\jsp\async Path = D:\work\java\jsp\async\async1.jsp .... .... Path = D:\work\java\websocket-deprecated\echo.html
https://sites.google.com/site/ramj2eev1/home/javabasics/JavaIODemo_File_displaydirStructure_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/JavaIODemo_File_displaydirStructure_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/a3d05269db9922e504bb1f9de8d07031990c9910/BasicJava/JavaIODemo_File_displaydirStructure_App/?at=master
See also:
No comments:
Post a Comment