I need to rename the files before uploading them to my local directory. How I can do this this?
rename files to upload to server ASP.NET Anonymous User 2059 21 Aug 2014 I need to rename the files before uploading them to my local directory. How I can do this this?
protected void button1_Click(object sender, EventArgs e){
string directory = Server.MapPath("uploads");
string fExtension = Path.GetExtension(FileUpload1.PostedFile.FileName);
string fileName = "newFileName" + fExtension;
this.FileUpload1.SaveAs(Path.Combine(directory,fileName));
}
Hope this will solve your problem