Dica rápida para qualquer pessoa que venha aqui com um problema semelhante:
Cuidado com os aplicativos de sincronização da web, como o DropBox. Acabei de passar 2 horas pensando que a instrução "using" (Dispose pattern) está quebrada no .NET.
Acabei percebendo que o Dropbox está continuamente lendo e gravando arquivos em segundo plano, para sincronizá-los.
Adivinha onde minha pasta Projetos do Visual Studio está localizada? Dentro da pasta "Meu Dropbox", é claro.
Portanto, conforme eu executava meu aplicativo no modo de depuração, os arquivos que ele estava lendo e gravando também eram continuamente acessados pelo DropBox para serem sincronizados com o servidor DropBox. Isso causou os conflitos de bloqueio / acesso.
Portanto, pelo menos agora sei que preciso de uma função File Open mais robusta (ou seja, TryOpen () que fará várias tentativas). Estou surpreso que ainda não seja parte integrante da estrutura.
[Atualizar]
Esta é minha função auxiliar:
/// <summary>
/// Tries to open a file, with a user defined number of attempt and Sleep delay between attempts.
/// </summary>
/// <param name="filePath">The full file path to be opened</param>
/// <param name="fileMode">Required file mode enum value(see MSDN documentation)</param>
/// <param name="fileAccess">Required file access enum value(see MSDN documentation)</param>
/// <param name="fileShare">Required file share enum value(see MSDN documentation)</param>
/// <param name="maximumAttempts">The total number of attempts to make (multiply by attemptWaitMS for the maximum time the function with Try opening the file)</param>
/// <param name="attemptWaitMS">The delay in Milliseconds between each attempt.</param>
/// <returns>A valid FileStream object for the opened file, or null if the File could not be opened after the required attempts</returns>
public FileStream TryOpen(string filePath, FileMode fileMode, FileAccess fileAccess,FileShare fileShare,int maximumAttempts,int attemptWaitMS)
{
FileStream fs = null;
int attempts = 0;
// Loop allow multiple attempts
while (true)
{
try
{
fs = File.Open(filePath, fileMode, fileAccess, fileShare);
//If we get here, the File.Open succeeded, so break out of the loop and return the FileStream
break;
}
catch (IOException ioEx)
{
// IOExcception is thrown if the file is in use by another process.
// Check the numbere of attempts to ensure no infinite loop
attempts++;
if (attempts > maximumAttempts)
{
// Too many attempts,cannot Open File, break and return null
fs = null;
break;
}
else
{
// Sleep before making another attempt
Thread.Sleep(attemptWaitMS);
}
}
}
// Reutn the filestream, may be valid or null
return fs;
}