Search this blog

Monday, June 1, 2009

Delete a File thru C#

To delete a file :

using System;

using System.IO;

File.Delete("c:\\file.txt");

No comments:

Post a Comment