In this assignment, you will create a Java program to search recursively for files in a directory. • The program must take two command line parameters. First parameter is the folder to search for. The...


In this assignment, you will create a Java program to search recursively for files in a directory.
• The program must take two command line parameters. First parameter is the folder to search for. The
second parameter is the filename to look for, which may only be a partial name.
• If incorrect number of parameters are given, your program should print an error message and show the
correct format.
• Your program must search recursively in the given directory for the files whose name contains the given
filename. Once a match is found, your program should print the full path of the file, followed by a newline.
• You can implement everything in the main class. You need define a recursive method such as:
public static search(File sourceFolder, String filename)
For each subfolder in sourceFolder, you recursively call the method to search.
• A sample run of the program may look like this:
//The following command line example searches any file with “Assignment” in its name
%java FuAssign7.FuAssignment7 C:\CIS 265 Assignment
C:\CIS 265\AS 2\FuAssignment2.class
C:\CIS 265\AS 2\FuAssignment2.java
C:\CIS 265\AS 3\FuCIS265\FuAssignment3.class
C:\CIS 265\AS 3\FuCIS265\FuAssignment3.java
C:\CIS 265\AS 4\FuAssignment4.gpj



Jun 04, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here