Copy All files from one folder to other folder in Asp.net
Hi , Here am creating th edirectory at runtime and am coping the All files from one folder to other folder at a time. <div> <asp:textbox ID="Textbox1" runat="server"></asp:textbox><br /> <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" /> <br /> <asp:Label ID="lblMessage" runat="server"/> </div> C# code protected void Button1_Click(object sender, EventArgs e) { string directoryPath = Server.MapPath("~/") + Textbox1.Text; //string[] f = Directory.GetFiles(Server.MapPath("/Account")); if (!Directory.Exists(directoryPath)) { Directory.CreateDirectory(directoryPath); lblMessage.Text = "Directory created"; DirectoryInfo dir1 = new DirectoryInfo(Server.MapPath("~/Account")); DirectoryI