How to Compare Two Folders on Windows 11 and 10

Key Takeaways

  • One way to compare folders is to right-click your folders one at a time and choose “Properties” for each. Then compare the Properties window of each folder.
  • The robocopy command is a command-line tool that can be used to view the differences between folder.
  • Use WinMerge to compare the contents and details of folders if you want a graphical tool.

Do you want to compare the number of files or folders or simply visualize the difference between two folders? If so, you have two graphical and one command line method to do that. We’ll show you how to perform the folder comparison task on your Windows 11 or Windows 10 PC.

Compare Folders From Properties

To compare the number of files, subfolders, the size, and the creation date of two folders, use the Properties option in Windows File Explorer. This lets you quickly glance at the main attributes of a folder.

To start, launch File Explorer using Windows+E. Find the first folder, right-click it, and select “Properties.”

'Properties' highlighted for a folder in File Explorer.

Keep the first folder’s “Properties” window open. Then, find the second folder, right-click it, and select “Properties.”

You now have the “Properties” window open for both your folders. Bring these windows side-by-side by dragging them, and you can see the differences in the contents of these folders. For example, you can see how many files both folders have, what size these folders are, and so on.

'Properties' windows for two folders in File Explorer.

That gives you a general overview of the differences between your folders.

Compare Folders Using Command Prompt

If you prefer command line methods over graphical ones, use the robocopy command in Command Prompt to see the differences between the two folders. This command is actually for copying files from one folder to another, but you can make it show the differences between two specified folders and not copy any files.

To use robocopy, first open the Start Menu, search Command Prompt, and launch it.

Command Prompt highlighted in Start Menu.

In Command Prompt, type the following command. Replace “Folder1” with the path to your first folder and “Folder2” with the path to your second folder. Ensure both folder paths are enclosed in double quotes.

To copy a folder’s full path along with double quotes around the path, hold down the Shift key on your keyboard, right-click your folder, and choose “Copy as Path.”

robocopy "Folder1" "Folder2" /L /NJH /NJS /NP /NS
The 'robocopy' command typed in Command Prompt.

You’ll see the differences between your folders.

If you’re curious as to what the robocopy command does, here’s an explanation of each flag we used with the command:

  • L: This tells the command not to copy files but show the log of the files in the specified folder.
  • NJH: This flag excludes junctions, hard links, and reparse points from consideration. This way, the command focuses on the regular files in the specified folders.
  • NJS: This flag excludes symbolic links from the process.
  • NP: This flag excludes folder timestamps.
  • NS: This flag excludes file security information.

Compare Folders With WinMerge

If you want more details about the differences in your folders, Windows doesn’t have a built-in tool to help you with that. However, you can use a free third-party app called WinMerge to compare multiple folders.

To use it, launch a web browser on your PC, head to the WinMerge site, and download and install the app. Make sure to download the app’s executable and not the ZIP version.

Open the WinMerge app, then select File > Open in the Menu Bar or press Ctrl+O.

File > Open highlighted in WinMerge.

For the “1st File or Folder” field, select “Browse” and choose the first folder to compare.

'Browse' highlighted for the '1st File or Folder' field in WinMerge.

For the “2nd File or Folder” field, click the “Browse” button and choose the second folder to compare.

'Browse' highlighted for the '2nd File or Folder' field in WinMerge.

In both fields, enable the “Read-Only” option. Click the “Folder: Filter” field and type *.* if it isn’t already there. This ensures the app compares all the files in both the specified folders. Then, at the bottom, click “Compare.”

Various comparison options highlighted in WinMerge.

On the following screen, you’ll see the comparison of the specified folders. You’ll see information like identical files in both folders, files missing from one folder, and so on.

The comparison of two folders in WinMerge.

And that’s how you know what one folder has that another doesn’t. This can be really useful if you’re trying to quickly compare different versions of the same folder, like you’d have when you create a backup.


source
share

Leave a Comment