string path = @"D:\aaa"; if (Directory.Exists(path)) { Console.WriteLine("文件夹"); } else { if (File.Exists(path)) { Console.WriteLine("文件"); } else { Console.WriteLine("无效路径"); } } Console.Read();
System.IO.Directory.GetDirectories(); // 获取目录下面的文件夹System.IO.Directory.Exists() // 判断文件夹存不存判断是否是文件:System.IO.Directory.GetFiles() // 获取目录下面的文件System.IO.File.Exists() // 判断文件存不存在