Batch backup a harddrive without modifying access times C#

Posted by johnathan-doena on Stack Overflow See other posts from Stack Overflow or by johnathan-doena
Published on 2010-05-09T14:52:44Z Indexed on 2010/05/09 14:58 UTC
Read the original article Hit count: 232

I'm trying to write a simple program that will backup my flash drive. I want it to work automatically and silently in the background, and I also want it to be as quick as possible. The thing is, resetting all the access times is useless to me, and something I want to avoid. I know I can read the access times and set them back, but I bet it will fail one day in the future. It would be much simpler to read the files without ever changing it. Also, what is the fastest way to do this? What differences would there be between, say, a flash drive and an external hard drive.

I am writing this in C#, as it is the simplest way to do it and it will probably last more generations of Windows..

© Stack Overflow or respective owner

Related posts about c#

Related posts about file-io