Hello. I have the following code:
try {
fi.MoveTo(getHistoryFileName());
} finally {
Debug.Write("Move complete");
}
I thought that using this would make sure that I'd never have exceptions thrown, but I am getting IOExceptions sometimes. What is the reason?