Page 1 of 1

Question, kindly answer

Posted: 22 Nov 2011 16:52
by renzlo
Hi All,

What's your approach here?

I am processing thousand of files everyday and I want to make sure that I am processing a unique file, some sort of duplicate check. How do you do it in batch file?

-renzlo

Re: Question, kindly answer

Posted: 22 Nov 2011 17:33
by Ed Dyreen
'

Code: Select all

fc /? |more
compare /? |more

Re: Question, kindly answer

Posted: 22 Nov 2011 18:08
by renzlo
yes i know that command Ed but it seems not reliable.

Re: Question, kindly answer

Posted: 22 Nov 2011 18:36
by Ed Dyreen
'
Did you try binary comparison ?

Code: Select all

fc /b

Re: Question, kindly answer

Posted: 22 Nov 2011 19:04
by renzlo
Hi Ed,

Thank for the idea.

What goes on my mind is while I'm processing the files, my batch file will create a summary report of the files being processed and on the next process execution, It will first check the files to be processed on that summary report.