Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OrtizOL - xCSw - http://ortizol.blogspot.com
- using System;
- using System.IO;
- namespace Receta.CSharp.R0503
- {
- public class CopiarArchivo
- {
- public static void Main()
- {
- Console.WriteLine();
- // Rutas de origen y destino:
- string origen = @"C:\etc\ArchivoTexto.txt";
- string destino = @"C:\etc\CopiaArchivoTexto.txt";
- FileInfo archivoOrigen = new FileInfo(origen);
- FileInfo archivoDestino = new FileInfo(destino);
- try
- {
- // Valida que el archivo `CopiaArchivoTexto.txt`:
- if (File.Exists(destino))
- {
- archivoDestino.Delete();
- }
- // Copia el archivo `ArchivoTexto.txt`:
- archivoOrigen.CopyTo(destino);
- Console.WriteLine("{0} fue copiado en {1}.", origen, destino);
- }
- catch(IOException ioex)
- {
- Console.WriteLine(ioex.Message);
- }
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement