Code currently compares the FileInfo.LastWriteTime of the current file and the backup to see if it should be backed up. This method has an error of ~10 seconds because of the possibility of a network location having a different LastWriteTime even if the files are the same.
Switch to a solution that records the LastWriteTime on backup and stores it with a list of files. YAML? XML? Config? Needs fast read/write speeds.
Code currently compares the FileInfo.LastWriteTime of the current file and the backup to see if it should be backed up. This method has an error of ~10 seconds because of the possibility of a network location having a different LastWriteTime even if the files are the same.
Switch to a solution that records the LastWriteTime on backup and stores it with a list of files. YAML? XML? Config? Needs fast read/write speeds.