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.R0513
- {
- public class ComprobacionRutas
- {
- public static void Main(String[] rutas)
- {
- Console.WriteLine(Environment.NewLine);
- // Por cada argumento pasado desde la línea de comandos
- // se determina si es un directorio o un archivo:
- foreach (string ruta in rutas)
- {
- Console.Write ("{0}", ruta);
- if (Directory.Exists(ruta))
- {
- Console.WriteLine(" es un directorio.");
- }
- else if (File.Exists(ruta))
- {
- Console.WriteLine(" es un archivo.");
- }
- else
- {
- Console.WriteLine(" no existe.");
- }
- }
- Console.WriteLine(Environment.NewLine);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement