Mega Code Archive

 
Categories / Java Tutorial / File
 

Compare two file paths

import java.io.File; public class Main {   public static void main(String[] args) {     File file1 = new File("C:/File/demo1.txt");     File file2 = new File("C:/FileIO/demo1.txt");     if (file1.compareTo(file2) == 0) {       System.out.println("Both paths are same!");     } else {       System.out.println("Paths are not same!");     }   } }