zoukankan      html  css  js  c++  java
  • asp.net关于上传文件修改文件名的方法

    我这里主要用到了文件的复制方法

     string SavesUPLoadPath = ConfigurationManager.AppSettings["AWUploadLocation"] + CompanyName + "/";
                            string copySavesUPLoadPath = ConfigurationManager.AppSettings["AWUploadLocation"] + CompanyName + "/";
                            if (!Directory.Exists(SavesUPLoadPath))//判断上传文件夹是否存在,若不存在,则创建
                            {
                                Directory.CreateDirectory(SavesUPLoadPath);//创建文件夹
                            }

                         
                            SavesUPLoadPath = SavesUPLoadPath + FileUpload1.FileName;
                            FileUpload1.SaveAs(SavesUPLoadPath);
                            string NewSaveUPLoadPath = copySavesUPLoadPath + txtRefNO.Text + "-" + DateTime.Now.Year + "-" + DateTime.Now.Month + "-" + DateTime.Now.Day + "-" + DateTime.Now.Hour + "-" + DateTime.Now.Minute + ".pdf";
                            File.Copy(SavesUPLoadPath, NewSaveUPLoadPath);   ---------把文件赋给新的 //复制文件的作用
                            File.Delete(SavesUPLoadPath); --在删除原来的
                            Response.Write(NewSaveUPLoadPath);
                         
                            labeMess.Text = GetGlobalResourceObject("public", "UpLoadPdfsucceed").ToString();
                            btnSearch.Enabled = false;
                            btnUpLoadFile.Enabled = false;
                           

  • 相关阅读:
    C/C++的64为长整型数的表示
    二分图带权匹配 KM算法与费用流模型建立
    常见的排序算法比较及总结
    个人联系方式
    (1) linux 3.x
    (4) linux 3.x
    (3) linux 3.x
    (2) linux 3.x
    (1) linux 3.x
    (3) linux 3.x
  • 原文地址:https://www.cnblogs.com/yzenet/p/2651258.html
Copyright © 2011-2022 走看看