This tutorial will show you how to delete a directory on the disk using ASP.NET 2.0 and C#.NET
The .NET Framework offers a number of types that makes accessing resources on filesystems easy to use.
To delete a simple directory to the disk, we will need to first import the System.IO namespace. The System.IO namespace contains the Delete() method that we will use to perform our delete with.
| using System.IO |
I just signed up at Server Intellect and couldn't be more pleased with my Windows Server! Check it out and see for yourself.
We'll put our code in the btnSubmit_Click() event.
When the btnSubmit_Click() event fires it executes the Delete() method of the Directory namespace with the specified directory name in with the current directory (MapPath(".")) concatenating with our directory name and the boolean value of chkRecurse. This last argument specifies whether or not we would like to delete every subdirectory within our primary directory.
| protected void btnSubmit_Click(object sender, EventArgs e) { try } { Directory.Delete(MapPath(".") + "\\" + txtDir.Text, chkRecurse.Checked); }catch (Exception ex) { lblStatus.Text = ex.Message; } |
Need help with Windows Dedicated Hosting? Try Server Intellect. I'm a happy customer!
We have one textbox, a Submit button, a label, and a checkbox on the front end for user interaction. The front end .aspx page looks something like this:| <table width="600" border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#cccccc"> <tr> </table> <td width="100" align="right" bgcolor="#eeeeee" class="header1"> Directory to Create:</td> </tr><td align="center" bgcolor="#FFFFFF"> <asp:TextBox ID="txtDir" runat="server"></asp:TextBox> <asp:CheckBox ID="chkRecurse" runat="server" Text="Recursive Delete" /><br /> <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" /><br /> <asp:label ID="lblStatus" runat="server"></asp:label></td> |
We moved our web sites to Server Intellect and have found them to be incredibly professional. Their setup is very easy and we were up and running in no time.
The flow for the code behind page is as follows.| using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.IO; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) } { } protected void btnSubmit_Click(object sender, EventArgs e) { try }{ Directory.Delete(MapPath(".") + "\\" + txtDir.Text, chkRecurse.Checked); }catch (Exception ex) { lblStatus.Text = ex.Message; } |
No comments:
Post a Comment