I'm from Spain, sorry about my bad English...
I need to know if Ultraedit returns some value to know if the files are equals or they are differents, to control it with C# code.
Thank you for the help
Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.
fc file1.txt file2.txt@echo off
IF "%1%"=="" GOTO Fehler
IF "%2%"=="" GOTO Fehler
fc %1 %2 >nul
if %ERRORLEVEL%==1 goto machwas
echo Dateien sind gleich
goto ende
:machwas
echo Dateien sind ungleich
goto ende
:Fehler
echo Fehler. Bitte 2 Dateien als Parameter angeben ..
goto ende
:ende