Quick Links

There is a great command line tool that can be used to compare files to see if there are any content or binary code differences that you can access if you are using a PC. File Compare or FC as we will refer to is from here on out, is a simple program that will compare the contents of text or binary files and is capable of comparing both ASCII and Unicode text. You can use this tool to display any lines from two files or two sets of files that do not match up with the others.

File Compare’s Switches and Parameters

  1. /B – This switch will perform a binary comparison.
  2. /C – If you need to do a case insensitive comparison, use this switch.
  3. /A – This switch will make FC show only the first and last lines for each group of differences.
  4. /U – Use this switch to compare files as Unicode text files.
  5. /L – This will compare your files as ASCII text.
  6. /N – This switch can only be used with ASCII but it will show all the corresponding line numbers.
  7. /LBn – Replace the “n” with a number to limit the amount of consecutive different lines that FC will read before it will abort. The default, if you do not specify a number is 100 lines of mismatched text.
  8. /nnnn – Replacing the “n’s” here will tell FC that when it finds mismatched lines, it can only continue if it finds “n” consecutive matching lines after the mismatch. This is useful if you want to prevent two files from becoming extremely out of sync.
  9. /T – This switch will tell FC not to expand tabs to spaces.
  10. /W – If you use this switch, FC will compress white space (tabs and spaces) during its comparison of your files.

There is only one parameter you will need to specify, but you will need to enter two instances of it. This is the Pathname parameter in which you will state the location of your files.

FC’s Syntax

Like every tool in command prompt, you will need to know how to enter your commands with the proper syntax. There are two main options for the File Compare tool that you can use. If you want to compare two sets of files instead of two individual files, you can use wildcards (? and *).

FC [pathname1] [pathname2]

FC [switches] [pathname1] [pathname2]

Depending on your command, you will receive one of four %errorlevel% responses.

  1. -1 – Your syntax is incorrect.
  2. 0 – Both files are identical.
  3. 1 – The files are different.
  4. 2 – At least one of the files can’t be found.

Let’s Practice

Before we get started, you should download our three sample text documents which we will use for the test. These documents each contain a paragraph of text with a few similar word groupings. Once you have downloaded these three documents, you can copy them into any folder on your computer. For the purposes of this tutorial, we will put all the text documents on the desktop.

  1. FCsample
  2. FCexercise
  3. FCexercise2

Now you will need to open up an elevated command prompt window. Open the start menu in Windows 7 and 10 or open the search function in Windows 8 and search for CMD. Next, right-click on it and then press “Run as administrator.” While you don’t need to open an elevated command prompt window, it will help you to avoid any pesky confirmation dialog boxes.

sshot-1

Our tutorial today will cover several simple scenarios which will be elaborated on below.

  1. Compare two text files in the same folder using File Compare.
  2. Compare files in the same folder using File Compare using the “/lbn” switch.
  3. Compare two identical files.
  4. Perform a binary comparison of two different files and two identical files.

Scenario 1 – Compare two text files using File Compare.

Now that you have your command prompt window open and you have your text files on your desktop, we are ready to do a simple file comparison. In this section, we will do a basic comparison, and then add a few different options. Begin by entering the following command to compare the contents of “FCsample” and “FCexercise.” Remember to substitute the pathname with the name that matches your computer, and remember that command prompt is not case sensitive.

fc C:\Users\Martin\Desktop\FCsample.txt C:\Users\Martin\Desktop\FCexercise.txt

FC 2

In this case, all the text from both documents is shown because they do not match up properly.

Scenario 2 - Compare files in the same folder using File Compare using the “/lbn” switch.

Now, let’s try another comparison in which we will tell FC to stop after 2 lines of mismatched data. Do this, by adding the “/lbn” switch.

fc /lb2 C:\Users\Martin\Desktop\FCsample.txt C:\Users\Martin\Desktop\FCexercise.txt

FC 3

As you can see, you receive an error message which says “Resync Failed. Files are too different.” This is because there are more than two consecutive lines of mismatched data. Try changing the numbers or editing the files yourself and play with the file compare tool to see what results you get.

Scenario 3 - Compare two identical files.

In the files you downloaded, you will see two files called “FCexercise” and “FCexercise2.” These two files have exactly the same content, so we will perform a comparison and see what results we get.

fc C:\Users\Martin\Desktop\ FCexercise.txt C:\Users\Martin\Desktop\FCexercise2.txt

FC 4

As you can see from the image above, FC reports that no differences were encountered. If you were to edit one file, add a single letter, and try the command again, your results would show up as in the image below. Note that the only thing that was changed was the addition of the letter “a.”

FC 5

Scenario 4 – Perform a binary comparison of two different files and two identical files.

For this example, we will be performing a binary comparison of the “FCexercise” and “FCsample” files.

fc /b C:\Users\Martin\Desktop\ FCexercise.txt C:\Users\Martin\Desktop\sample.txt

FC 6
FC 7

 

You will notice that the function begins by informing you that the two files are being compared. Next, a bunch of binary digits scroll by, which is where the files are being compared, side by side, and lastly, you receive a report that says that, FCexercise is longer than FCsample.  For this next example, we will be performing a binary comparison of the “FCexercise” and “FCexercise2” files.

fc /b C:\Users\Martin\Desktop\ FCexercise.txt C:\Users\Martin\Desktop\FCexercise2.txt

FC 8

In this comparison of two identical files, FC reports that there is no difference between the two files. Now that you know the basics of the FC tool, feel free to play with the switches and test out some new ideas. Remember that while you are playing with files, it is best to use dummy samples like the ones provided here, in order to avoid any accidental data loss.

Image Credit: Nikki on Flickr