How to delete all files under a folder

A

ad

Hi,
How can I delete all files in a folder by C#
for example, I want to delete all files under c:\Test
 
J

John Duval

Hi ad,
Could you just iterate over the files?
string[] files = Directory.GetFiles(@"C:\temp");
foreach (string file in files)
File.Delete(file);

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top