web-dev-qa-db-ja.com

ファイルアップロードコントロールを介してアップロードされたときにc#.netでファイルの名前を変更し、ファイルの変更名をデータベースに保存します

私はファイルを閲覧し、文字列変数で閲覧ファイルの名前を追跡するファイルアップローダーを持っています。今、私はこのuplaodファイル名を別の文字列変数に格納されている別の名前に変更したい

string strRoleValue = ddlrole.SelectedValue;

 string strfilename = FileUpload1.FileName;
 string existpath = Server.MapPath("~\\JD\\");
 DirectoryInfo ObjSearchFile = new DirectoryInfo(existpath);
  string saveLocation = existpath + strfilename;
FileUpload1.SaveAs(saveLocation);

strRoleValueこの変数には、fileuploadを介してアップロードされたファイルの名前を変更するために使用する名前が含まれています。 strfilenameに保存されているfileuploadコントロールを介してアップロードされたファイル名。したがって、このファイルを指定されたフォルダーに保存する前に、strRoleValue値で名前を変更したいと思います。どうすればこれを達成できますか..plzヘルプ

8
shweta

あなたは次のリンクをチェックすることができます

http://asp-net-example.blogspot.in/2009/01/aspnet-fileupload-example-how-to-rename.html

<%@ Page Language="C#" %>  
<%@ Import Namespace="System.IO" %>  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  

<script runat="server">  
    protected void Button1_Click(object sender, System.EventArgs e) {  
        string uploadFolder = Request.PhysicalApplicationPath + "UploadFile\\";  
        if (FileUpload1.HasFile)  
        {  
            string extension = Path.GetExtension(FileUpload1.PostedFile.FileName);  
            FileUpload1.SaveAs(uploadFolder + "Test"+ extension);  
            Label1.Text = "File uploaded successfully as: " + "Test"+ extension;  
        }  
        else  
        {  
            Label1.Text = "First select a file.";  
        }  
    }  
</script>  

<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
    <title>asp.net FileUpload example: how to rename file when upload (change file name when upload)</title>  
</head>  
<body>  
    <form id="form1" runat="server">  
    <div>  
        <h2 style="color:Green">asp.net FileUpload example: File Rename</h2>  
        <asp:Label   
             ID="Label1"   
             runat="server"   
             Font-Size="Large"  
             ForeColor="OrangeRed"  
             >  
        </asp:Label>  
        <br /><br />  
        <asp:FileUpload   
             ID="FileUpload1"   
             runat="server"   
             BackColor="DeepPink"   
             ForeColor="AliceBlue"   
             />  
        <asp:Button   
             ID="Button1"   
             runat="server"   
             Font-Bold="true"   
             ForeColor="DeepPink"   
             OnClick="Button1_Click"  
             Text="Upload It"  
             />     
    </div>  
    </form>  
</body>  
</html>  
11
Shrikant