是的,C#中的Directory
类提供了删除空目录的方法。你可以使用Delete
方法来删除一个空目录。以下是一个示例代码:
using System; using System.IO; class Program { static void Main() { string path = @"C:\example\empty_directory"; if (Directory.Exists(path)) { Directory.Delete(path, true); // 删除空目录 Console.WriteLine("空目录已删除"); } else { Console.WriteLine("目录不存在"); } } }
在这个示例中,我们首先检查给定的路径是否存在。如果存在,我们使用Directory.Delete
方法删除该目录。第二个参数true
表示如果目录为空,则删除该目录。如果目录不为空,该方法将抛出异常。