如何比较两个文件的路径?(How to compare paths of two files?)

优质
小牛编辑
123浏览
2023-12-01

问题描述 (Problem Description)

如何比较两个文件的路径?

解决方案 (Solution)

此示例显示如何通过使用File类的filename.compareTo(另一个文件名)方法来比较同一目录中的两个文件的路径。

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:/java/demo1.txt");
      if(file1.compareTo(file2) == 0) {
         System.out.println("Both paths are same!");
      } else {
         System.out.println("Paths are not same!");
      }
   }
}

结果 (Result)

上面的代码示例将产生以下结果。

Paths are not same!