Lakesat Posted November 2, 2006 Posted November 2, 2006 I searched through Autoit help and didn't found any function that compare the content of two files (binary). You guys have any thought on how it could be done?
jvanegmond Posted November 2, 2006 Posted November 2, 2006 (edited) FileRead returns characters, but they are just as well compared as binary. If FileRead("file1.ext") == FileRead("file2.ext") Then ; Files match Else ; Files don't match EndIf Edited November 2, 2006 by Manadar github.com/jvanegmond
Lakesat Posted November 2, 2006 Author Posted November 2, 2006 FileRead returns characters, but they are just as well compared as binary. If FileRead("file1.ext") == FileRead("file2.ext") Then ; Files match Else ; Files don't match EndIf Thanks a bunch... That'll help for sure.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now