Hi All
I have a query related to verification performed while coping.
So anybody can tell me how this verification is performed bit by bit or any link
related to the source code.
I have code to copy from one drive to the another but after copy operation I need to verify the copy operation. Then how can I verify the copy operation bit by bit so that I can say copy is performed without ERROR.
How to pass the verify request to the device driver ?
This code is working properly with the files with small size. But it is not working with .rar or .zip files with large size. If I increase the buffer size of source and destination it runs proper in some situation. I need to compare the files with large size.
For comparing files with above code takes large amount of time. Then how the verify operation is performed in various copying tool more faster. Is any efficient code is available so that I do verify copy operation fast.
Coping file from one source to destination is over. Now I have to verify that files are copied without an error so that I am comparing those files bit by bit so as to confirm that files are copied without an error. I need a help that how the compare operation will work efficiently.