X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/e3ef49aebf88034b0185f8c8a67b5e1fe7b1241c..1a14964592379a39d96bc84c53db779507d12415:/demo/src/Reportes/InfoPrestacionesAdmin.cs diff --git a/demo/src/Reportes/InfoPrestacionesAdmin.cs b/demo/src/Reportes/InfoPrestacionesAdmin.cs index 501a9d4..121f2cd 100644 --- a/demo/src/Reportes/InfoPrestacionesAdmin.cs +++ b/demo/src/Reportes/InfoPrestacionesAdmin.cs @@ -82,8 +82,11 @@ namespace Reportes Directory.CreateDirectory( dirAceptados ); } - File.Move( ip.PathArchivo, Path.Combine( dirAceptados, ip.NombreArchivo ) ); - + string pathToMove = Path.Combine( dirAceptados, ip.NombreArchivo ); + if ( File.Exists(pathToMove) ) + File.Delete( pathToMove ); + + File.Move( ip.PathArchivo, pathToMove ); } public void MoverArchivoRechazado( InfoPrestacionesReport ip ) @@ -96,8 +99,11 @@ namespace Reportes Directory.CreateDirectory( dirRechazados ); } - File.Move( ip.PathArchivo, Path.Combine( dirRechazados, ip.NombreArchivo ) ); + string pathToMove = Path.Combine( dirRechazados, ip.NombreArchivo ); + if ( File.Exists(pathToMove) ) + File.Delete( pathToMove ); + File.Move( ip.PathArchivo, pathToMove ); } #endregion Métodos Públicos