温馨提示×

c# removeall如何删除非空文件夹

c#
小樊
81
2024-11-30 03:26:14
栏目: 编程语言

在C#中,要删除非空文件夹及其内容,可以使用Directory.Delete方法。这个方法会删除指定的目录及其所有子目录和文件。这里有一个示例代码:

using System;
using System.IO;

class Program
{
    static void Main()
    {
        string folderPath = @"C:\example_folder";

        try
        {
            if (Directory.Exists(folderPath))
            {
                Directory.Delete(folderPath, true); // 设置recursive参数为true以删除非空文件夹
                Console.WriteLine("文件夹已成功删除。");
            }
            else
            {
                Console.WriteLine("文件夹不存在。");
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine("删除文件夹时发生错误: " + ex.Message);
        }
    }
}

在这个示例中,我们首先检查folderPath是否存在。如果存在,我们使用Directory.Delete方法删除该文件夹,并将recursive参数设置为true。这将删除文件夹及其所有子目录和文件。如果在删除过程中发生任何错误,我们将捕获异常并显示错误消息。

0