This enumeration defines constants for the various possible types of files in the results of a folder comparison. These constants are bit masks and different values may therefore be combined with a bitwise AND operation when testing a result. You can use the numeric values from scripting languages that do not have access to the symbolic enumeration constants.
Constant | Value | Description |
---|---|---|
fftUnknown | 0x0000 (0) | The results row for which information was requested does not exist. |
fftFirstFile | 0x0001 (1) | The row contains a file in the first column. |
fftSecondFile | 0x0002 (2) | The row contains a file in the second column. |
fftThirdFile | 0x0004 (4) | The row contains a file in the third column. |
fftFirstFolder | 0x0010 (16) | The row contains a folder in the first column. |
fftSecondFolder | 0x0020 (32) | The row contains a folder in the second column. |
fftThirdFolder | 0x0040 (64) | The row contains a folder in the third column. |
fftFSChanged | 0x0100 (256) | The files in the first and second columns have changed with respect to one-another. |
fftSTChanged | 0x0200 (512) | The files in the second and third columns have changed with respect to one-another. |
fftFirstFileNewer | 0x1000 (4096) | The file in the first column is newer than the other files. |
fftSecondFileNewer | 0x2000 (8192) | The file in the second column is newer than the other files. |
fftThirdFileNewer | 0x4000 (16384) | The file in the third column is newer than the other files. |