Hi Dw.
I'm using this code available from here and I have changed it from keeping the hashs on a variable(array) to writing it on a file. Now what I want to do is to read this file.
Basically I'm scanning through all my drive file and for each file I hash it and its hash code I save it on a text file on its own line and I have a special separator then a file name. So what I want to do is to read through the text file and get the names and on each file I chech if it does exist on the text file and then read the hash to a variable then hash the file again now I hash to only see if the file has ben modified or not. but the problem is that I don't know how will I convert the hash read from text file line because it is read as a string so it can't compare a byte to a text.
any Idea how I could solve this.