que recibieron una IOException muy raro cuando se escribe en un archivo XML:Error de System.IO.Exception: "La operación solicitada no puede realizarse en un archivo con una sección mapeada por el usuario abierta".
System.IO.IOException: The requested operation cannot be performed on a file with a user-mapped section open.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
at System.Xml.XmlTextWriter..ctor(String filename, Encoding encoding)
at System.Xml.XmlDocument.Save(String filename)
El error ocurrió cuando llamé a la función Guardar (cadena) de XmlDocument.
¿Alguna idea sobre lo que sucedió?
También podría ser transitoria (me acaba de suceder, próximo intento de escritura estaba bien, pero no en el siguiente archivo, que luego funcionó bien en el próximo intento), como cuando un escáner antivirus está oscilando a través de su mundo. –