Write an application that determines whether the first two files are located in the same folder as the third one. If the files are in the same folder display All files are in the same folder, otherwise display Files are not in the same folder. Test the program when the files are in the same folder and when they are not. import java.nio.file.*; import java.io.IOException; public class CompareFolders {     public static void main(String[] args) {         Path file1 = Paths.get("/root/sandbox/TestData1.txt");         Path file2 = Paths.get("/root/sandbox/TestData2.txt");         Path file3 = Paths.get("/root/sandbox/test/TestData3.txt");         // Write your code here     } }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

Write an application that determines whether the first two files are located in the same folder as the third one. If the files are in the same folder display All files are in the same folder, otherwise display Files are not in the same folder.

Test the program when the files are in the same folder and when they are not.

import java.nio.file.*;
import java.io.IOException;
public class CompareFolders {
    public static void main(String[] args) {
        Path file1 = Paths.get("/root/sandbox/TestData1.txt");
        Path file2 = Paths.get("/root/sandbox/TestData2.txt");
        Path file3 = Paths.get("/root/sandbox/test/TestData3.txt");
        // Write your code here
    }
}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Knowledge Booster
Study of Characters
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT