Load file from local disk

On this page

When the source file is located on the local disk, GroupDocs.Comparison allows you to load it using the Comparer class constructor by specifying absolute or relative path. To load the target file located on the local disk, use the Add method. Specify absolute or relative path as parameter.

The following code snippet shows how to load files from local disk:

using GroupDocs.Comparison;
// ...

using (Comparer comparer = new Comparer("source.docx"))
{
    comparer.Add("target.docx");
    comparer.Compare("result.docx");
}

On this page