The compareTo() function compares two pathnames lexicographically. In Java, the method may be used to sort files. This type of activity is dependent on the system on which JVM is installed. When comparing pathnames on Unix systems, the alphabetic case matters, while it doesn’t on Windows.
Syntax:
public int compareTo(File pathname)
Parameters:
- pathname – The abstract pathname against which this abstract pathname will be compared.
Returns: This method returns 0 if the argument is equal to this abstract pathname, a negative value if the abstract pathname is lexicographically less than the argument, and a value larger than 0 if the abstract pathname is lexicographically greater than the argument.
Example:
Java
| // Java program to demonstrate the working // of compareTo() method of File class importjava.io.File; publicclassGFG{    publicstaticvoidmain(String[] args)     {        File f1 = newFile("c:\\GEEKSFORGEEKS\\Gfg1.txt");        File f2 = newFile("c:\\GEEKSFORGEEKS\\Gfg2.txt");          intvalue = f1.compareTo(f2);          if(value == 0)         {            System.out.println("Both files are equal");        }        elseif(value > 0)         {            System.out.println(" Gfg1 is greater than Gfg2");        }        else        {            System.out.println(" Gfg2 is greater than Gfg1");        }    }} | 
Output:


 
                                    








