add method

Contents
[ ]

add

Adds file to comparison.

def add(self, file_path):
    ...
Parameter Type Description
file_path str Compared file path

add

Adds document stream to comparison.

def add(self, document):
    ...
Parameter Type Description
document io.RawIOBase Compared document stream

add

Adds folder to comparison.

def add(self, file_path, compare_options):
    ...
Parameter Type Description
file_path str
compare_options groupdocs.comparison.options.CompareOptions

add

Adds file to comparison with loading options specified.

def add(self, file_path, load_options):
    ...
Parameter Type Description
file_path str Compared file path
load_options groupdocs.comparison.options.LoadOptions Load options

add

Adds document stream to comparison with loading options specified.

def add(self, document, load_options):
    ...
Parameter Type Description
document io.RawIOBase Compared document stream
load_options groupdocs.comparison.options.LoadOptions Load options

See Also