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 //这种方法删除的文件,在回收站中找不回来。注意哦 20 Directory.Delete(Path.Combine(path,aFileName),true); 21 22 Console.ReadKey(); 23 } 24 } 25 }
3 效果
4 删除文件,不暂存于回收站中
时间: 2024-10-11 15:20:02