Open In App

Java File Class compareTo() Method with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

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
  
import java.io.File;
  
public class GFG
{
    public static void main(String[] args) 
    {
        File f1 = new File("c:\\GEEKSFORGEEKS\\Gfg1.txt");
        File f2 = new File("c:\\GEEKSFORGEEKS\\Gfg2.txt");
   
        int value = f1.compareTo(f2);
   
        if (value == 0
        {
            System.out.println("Both files are equal");
        }
        else if (value > 0
        {
            System.out.println(" Gfg1 is greater than Gfg2");
        }
        else 
        {
            System.out.println(" Gfg2 is greater than Gfg1");
        }
    }
}


Output:


Last Updated : 02 Feb, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads