Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java: Complete the method listDirectories below. This method should recursively search for, and print, the names of all subdirectories existing beneath the directory entered by

Java:

Complete the method listDirectories below. This method should recursively search for, and print, the names of all subdirectories existing beneath the directory entered by the user. If there are no subdirectories beneath the point where the program begins (represented by the parameter: directory), the method should print "No Directories."

Strategy: Use the methods of the File class to handle the task. The method should get a list of all files in the directory passed through the parameter. The method should then loop through the list. If the file being examined is a directory, then the method should print the name of the directory and recursively call itself with the new directory as the parameter. Watch out that you send the correct pathname!!!

/** * A program to list the directories on a disk * * @author * @version */ public class DirectoryList { /** * Read in a directory name entered by the user * and print out a recursive list of directories * * @param args The command line arguments */ public static void main ( String[] args ) throws IOException { BufferedReader keyboard = new BufferedReader ( new InputStreamReader( System.in ) ); String userInput = ""; System.out.print ( "Enter the name of a directory: " ); userInput = keyboard.readLine(); listDirectories( userInput ); } /** * Using recursion, print out all subdirectories beneath the * directory sent in the parameter * * @param directory The name of the directory to begin search */ public static void listDirectories ( String directory ) { File dirFile = new File( directory ); } // method listDirectories } 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions