1 代码
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 Directory.Delete(Path.Combine(path,aFileName),false); 20 21 Console.ReadKey(); 22 } 23 } 24 }
2 效果
时间: 2024-10-07 01:16:20