2010-12-03 94 views
0

我想找一個工具/程序,我可以生成報告說與添加,修改,刪除行的信息。我不是在尋找araxis合併或差異合併類型的工具,而是可以以html /文本格式爲我生成報告的工具。 A 非'.EXE'類型的工具是可觀的,因爲我有軟件限制。是的,我仍然使用exeruable罐,蝙蝠等工具。種類工具比較和生成報告

回答

0

如果你在一臺Windows電腦上,你有fc.exe這是一個內置的DOS應用程序。

FC [/A] [/C] [/L] [/LBn] [/N] [/OFF[LINE]] [/T] [/U] [/W] [/nnnn] 
    [drive1:][path1]filename1 [drive2:][path2]filename2 
FC /B [drive1:][path1]filename1 [drive2:][path2]filename2 

    /A   Displays only first and last lines for each set of differences. 
    /B   Performs a binary comparison. 
    /C   Disregards the case of letters. 
    /L   Compares files as ASCII text. 
    /LBn  Sets the maximum consecutive mismatches to the specified 
      number of lines. 
    /N   Displays the line numbers on an ASCII comparison. 
    /OFF[LINE] Do not skip files with offline attribute set. 
    /T   Does not expand tabs to spaces. 
    /U   Compare files as UNICODE text files. 
    /W   Compresses white space (tabs and spaces) for comparison. 
    /nnnn  Specifies the number of consecutive lines that must match 
      after a mismatch. 
    [drive1:][path1]filename1 
      Specifies the first file or set of files to compare. 
    [drive2:][path2]filename2 
      Specifies the second file or set of files to compare. 

也許它可以工作?

+0

它會做目錄比較嗎? – srinannapa 2010-12-03 15:33:54