Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using C#, how can I delete all files and folders from a directory, but still keep the root directory?

I have this

System.IO.DirectoryInfo downloadedMessageInfo = new DirectoryInfo(GetMessageDownloadFolderPath());

foreach (FileInfo file in downloadedMessageInfo.GetFiles())
{
    file.Delete(); 
}
foreach (DirectoryInfo dir in downloadedMessageInfo.GetDirectories())
{
    dir.Delete(true); 
}

Is this the cleanest way to do it?

share|improve this question
1  
What would be nice if DirectoryInfo had a method like .Clean(); – JL. Aug 17 '09 at 15:54
1  
or .DeleteFolders, and DeleteFiles methods. – JL. Aug 17 '09 at 15:54
9  
You want to be aware that your Deletes could very easily throw an exception if a file is locked (or if you don't have rights). See the FileInfo.Delete for a list of the exceptions. – Shane Courtrille Aug 17 '09 at 15:56

12 Answers

up vote 33 down vote accepted

Yes, I would do it in the same way.

share|improve this answer

Yes, that's the correct way to do it. If you're looking to give yourself a "Clean" (or, as I'd prefer to call it, "Empty" function), you can create an extension method.

public static void Empty(this System.IO.DirectoryInfo directory)
{
    foreach(System.IO.FileInfo file in directory.GetFiles()) file.Delete();
    foreach(System.IO.DirectoryInfo subDirectory in directory.GetDirectories()) subDirectory.Delete(true);
}

This will then allow you to do something like..

System.IO.DirectoryInfo directory = new System.IO.DirectoryInfo(@"C:\...");

directory.Empty();
share|improve this answer
4  
The last line should be subDirectory.Delete(true) instead of directory.Delete(true). I just cut-and-pasted the code and it deleted the main directory itself. Thanks for the code it's great! – aximili Jun 9 '10 at 5:18
@aximili - Updated it as it seems Adam didn't, good catch. – Matt Mitchell Nov 16 '11 at 0:47
And maybe add an optional parameter, bool clearSubFolders = true, so you have the choise to only clear files and not folders. – Paw Baltzersen Feb 15 '12 at 10:00
4  
note that Empty exists in C# already, for string. If I saw something else named Empty I would be surprised if it modified the object (or filesystem) instead of giving me a bool that says if it is empty or not. Because of that, I would go with the name Clean. – Default May 24 '12 at 7:14
1  
@noahnu: No, this will only call each function one time. – Adam Robinson Apr 8 at 0:09
show 4 more comments

I know I'm eleven months late with this one but we can also show love for LINQ:

using System.IO;
using System.Linq;
…
var directory = Directory.GetParent(TestContext.TestDir);

directory.GetFiles()
    .ToList().ForEach(f => f.Delete());

directory.GetDirectories()
    .ToList().ForEach(d => d.Delete(true));

Note that my solution here is not performant because I am using Get*().ToList().ForEach(...) which generates the same IEnumerable twice. I use an extension method to avoid this issue:

using System.IO;
using System.Linq;
…
var directory = Directory.GetParent(TestContext.TestDir);

directory.GetFiles()
    .ForEachInEnumerable(f => f.Delete());

directory.GetDirectories()
    .ForEachInEnumerable(d => d.Delete(true));

This is the extension method:

    /// <summary>
/// Extensions for <see cref="System.Collections.Generic.IEnumerable"/>.
/// </summary>
public static class IEnumerableOfTExtensions
{
    /// <summary>
    /// Performs the <see cref="System.Action"/>
    /// on each item in the enumerable object.
    /// </summary>
    /// <typeparam name="TEnumerable">The type of the enumerable.</typeparam>
    /// <param name="enumerable">The enumerable.</param>
    /// <param name="action">The action.</param>
    /// <remarks>
    /// “I am philosophically opposed to providing such a method, for two reasons.
    /// …The first reason is that doing so violates the functional programming principles
    /// that all the other sequence operators are based upon. Clearly the sole purpose of a call
    /// to this method is to cause side effects.”
    /// —Eric Lippert, “foreach” vs “ForEach” [http://blogs.msdn.com/b/ericlippert/archive/2009/05/18/foreach-vs-foreach.aspx]
    /// </remarks>
    public static void ForEachInEnumerable<TEnumerable>(this IEnumerable<TEnumerable> enumerable, Action<TEnumerable> action)
    {
        foreach (var item in enumerable)
        {
            action(item);
        }
    }
}
share|improve this answer

This code will clear the folder recursively.

    private void clearFolder(string FolderName)
    {
        DirectoryInfo dir = new DirectoryInfo(FolderName);

        foreach(FileInfo fi in dir.GetFiles())
        {
            fi.Delete();
        }

        foreach (DirectoryInfo di in dir.GetDirectories())
        {
            clearFolder(di.FullName);
            di.Delete();
        }
    }
share|improve this answer

Based on the hiteshbiblog, you probably should make sure the file is read-write.

private void ClearFolder(string FolderName)
{
    DirectoryInfo dir = new DirectoryInfo(FolderName);

    foreach (FileInfo fi in dir.GetFiles())
    {
        fi.IsReadOnly = false;
        fi.Delete();
    }

    foreach (DirectoryInfo di in dir.GetDirectories())
    {
        ClearFolder(di.FullName);
        di.Delete();
    }
}
share|improve this answer
 new System.IO.DirectoryInfo("C:\Temp").Delete(true);

 //Or

 System.IO.Directory.Delete("C:\Temp", true);
share|improve this answer
The second option, Directory.Delete(String, Boolean) worked for me. – Stephen MacDougall Mar 4 at 15:16

In Windows 7 if you have just created manually with the Windows Explorer the directory structure similar to this one:

C:
  \AAA
    \BBB
      \CCC
        \DDD

and run the code suggested in the original question to clean the directory C:\AAA, the line di.Delete(true) always fails with IOException "The directory is not empty" when trying to delete BBB. It is probably because of some kind of delays/caching in Windows Explorer.

The following code works for me reliably:

static void Main(string[] args)
{
    DirectoryInfo di = new DirectoryInfo(@"c:\aaa");
    CleanDirectory(di);
}

private static void CleanDirectory(DirectoryInfo di)
{
    if (di == null)
        return;

    foreach (FileSystemInfo fsEntry in di.GetFileSystemInfos())
    {
        CleanDirectory(fsEntry as DirectoryInfo);
        fsEntry.Delete();
    }
    WaitForDirectoryToBecomeEmpty(di);
}

private static void WaitForDirectoryToBecomeEmpty(DirectoryInfo di)
{
    for (int i = 0; i < 5; i++)
    {
        if (di.GetFileSystemInfos().Length == 0)
            return;
        Console.WriteLine(di.FullName + i);
        Thread.Sleep(50 * i);
    }
}
share|improve this answer

Every method that I tried, they have failed at some point with System.IO errors. The following method works for sure, even if the folder is empty or not, read-only or not, etc.

ProcessStartInfo Info = new ProcessStartInfo();  
Info.Arguments = "/C rd /s /q \"C:\\MyFolder"";  
Info.WindowStyle = ProcessWindowStyle.Hidden;  
Info.CreateNoWindow = true;  
Info.FileName = "cmd.exe";  
Process.Start(Info); 
share|improve this answer
string directoryPath = "C:\Temp";
Directory.GetFiles(directoryPath).ToList().ForEach(File.Delete);
Directory.GetDirectories(directoryPath).ToList().ForEach(Directory.Delete);
share|improve this answer
 foreach (string file in System.IO.Directory.GetFiles(path))
            {
                System.IO.File.Delete(file);
            }

            foreach (string subDirectory in System.IO.Directory.GetDirectories(path))
            {
                System.IO.Directory.Delete(subDirectory,true); 

            } 
share|improve this answer
DirectoryInfo Folder = new DirectoryInfo(Server.MapPath(path)); 
if (Folder .Exists)
{
    foreach (FileInfo fl in Folder .GetFiles())
    {
        fl.Delete();
    }

    Folder .Delete();
}
share|improve this answer
Could you be more specific and explain how and why this should work? – Rune Apr 11 at 7:32
Answers with only code are not suitable. You should explain how and why it should work/solve the problem. – rdurand Apr 11 at 7:37
DirectoryInfo dir = new DirectoryInfo(folder);
dir.Delete(true);
dir.Create();
share|improve this answer
This does not preserve the root folder. – John Allers Aug 5 '11 at 22:01
Apologies. Updated accordingly. – Simon Aug 23 '11 at 8:47
dir.Create() does not recreate the folder. You need to use Directory.CreateDirectory(folder). – Chris R Aug 24 '11 at 22:20
1  
It does according to MSDN: msdn.microsoft.com/en-us/library/d869eykc.aspx (since .NET 2.0) – Simon Aug 31 '11 at 15:01
14  
-1 Deleting and recreating the folder is NOT the same as keeping it. You will lose all custom permissions for that folder. – Gh0sT Oct 19 '11 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.