标签:
1 探测的文件夹
2 代码
1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 8 namespace directory创建一个文件夹 9 { 10 class Program 11 { 12 static void Main(string[] args) 13 { 14 //在指定路径下 15 string path = @"L:\"; 16 //文件夹的名字 17 string aFileName = "用程序创建的文件夹"; 18 19 if(Directory.Exists(Path.Combine(path,aFileName))) 20 { 21 Console.WriteLine("文件夹存在"); 22 } 23 else 24 { 25 Console.WriteLine("文件夹不存在"); 26 } 27 Console.ReadKey(); 28 } 29 } 30 }
3 效果
C#控制台基础 directory判断指定路径下是否存在指定的文件夹
标签:
原文地址:http://www.cnblogs.com/jinlingzi/p/5963120.html