File Directory ASP.Net Tutorial

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"  Inherits="Rename" %>



    Rename File


    
    

        

Rename File


        
        
        
        
        
        
        
        

    


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.IO;
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;
public partial class Rename : System.Web.UI.Page
{
    protected void btnBadRename_Click(object sender, EventArgs e)
    {
        string appPath = Request.PhysicalApplicationPath;
        string oldPath = Path.Combine(appPath, txtOldName.Text);
        string newPath = Path.Combine(appPath, txtNewName.Text);
        File.Move(oldPath, newPath);
    }
    protected void btnGoodRename_Click(object sender, EventArgs e)
    {
        string oldPath = Server.MapPath(txtOldName.Text);
        string newPath = Server.MapPath(txtNewName.Text);
        File.Move(oldPath, newPath);
    }
}