查看完整版本: 如何比较两个文件

english15 2007-11-23 09:58

如何比较两个文件

Function CompFile(F1 as string, F2 as string) as boolean
Dim issame as boolean
Open F1 For Binary As #1
Open F2 For Binary As #2

issame = True
If LOF(1) <> LOF(2) Then
issame = False
Else
whole
页: [1]

查看完整版本: 如何比较两个文件