Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java help thanks Write a program that searches for a specific file in a given folder and prints out the paths of all files in

image text in transcribedJava help thanks

Write a program that searches for a specific file in a given folder and prints out the paths of all files in that folder with the given filename. If the file cannot be not found, your program should print a message "File cannot be found", where is the name of your file. Use recursion in your solution. SAMPLE RUN 1: public static void main (String[] args) find ( "Aninal.java", "c./121/"); output: c:\121 HappyFarm\ver 6 \Animal.java c:1121 HappyFarmlver 7 Animal.java SAMPLE RUN 2: public static void main (String[] args) find ( "dummy . txt", "./121/"); Output: Cannot find dummy.txt Write a program that searches for a specific file in a given folder and prints out the paths of all files in that folder with the given filename. If the file cannot be not found, your program should print a message "File cannot be found", where is the name of your file. Use recursion in your solution. SAMPLE RUN 1: public static void main (String[] args) find ( "Aninal.java", "c./121/"); output: c:\121 HappyFarm\ver 6 \Animal.java c:1121 HappyFarmlver 7 Animal.java SAMPLE RUN 2: public static void main (String[] args) find ( "dummy . txt", "./121/"); Output: Cannot find dummy.txt

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

Question

1. What is meant by Latitudes? 2. What is cartography ?

Answered: 1 week ago

Question

What is order of reaction? Explain with example?

Answered: 1 week ago

Question

Conduct an effective performance feedback session. page 360

Answered: 1 week ago