c#文件夹操作(编辑计算机本地文件)(删、重命名、移动)
根据完整物理路径获取文件file
//获取文件 FileInfo fileinfo = new FileInfo(fullurl);
判断服务器文件存在,C# 判断服务器上文件是否存在(对应文件内是否有该文件)
https://blog.csdn.net/weixin_33515785/article/details/119284418
var path = " FramePath" ; var filePath = Server.MapPath(path); if (System.IO.File.Exists(filePath)) { var fileName = Path.GetFileName(filePath); FileInfo info = new FileInfo(filePath); Response.Clear(); Response.ClearHeaders(); Response.Buffer = false; Response.ContentType = "application/octet-stream"; Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FrameName + ".zip", System.Text.Encoding.UTF8).Replace("+", "%20")); Response.AppendHeader("Content-Length", info.Length.ToString()); Response.WriteFile(filePath); Response.Flush(); Response.End(); return new EmptyResult(); }View Code
C# 重命名文件方法
C# 重命名文件方法 - enych - 博客园 (cnblogs.com)
复制代码 1. //重命名文件 // 改名方法 FileInfo fi = new FileInfo("旧路径"); //xx/xx/aa.rar fi.MoveTo("新路径"); //xx/xx/xx.rar 2. 文件流方式 using (FileStream fsw = new FileStream(path + newName, FileMode.Create, FileAccess.Write)) //打开文件,用于只写 { BinaryWriter bw = new BinaryWriter(fsw); //编写器指向这个文件流 // 遍历文件合并 for (int i = 0; i < chunks; i++) { bw.Write(System.IO.File.ReadAllBytes(path + i.ToString() + "_" + filename)); //打开一个文件读取流信息,将其写入新文件 System.IO.File.Delete(path + i.ToString() + "_" + filename); //删除指定文件信息 bw.Flush(); //清理缓冲区 } }View Code
C# 移动文件方法
https://www.cnblogs.com/xielong/p/6187308.html (参考文档仅供参考,本人尝试文档中的移动方法没有实现)
//本地移动 //获取媒体文件路径 string fileurl = res.getfileurl(MGUID, out string fullurl); //获取文件 FileInfo fileinfo = new FileInfo(fullurl); //获取放置新目录 string sBaseDir = getsaveDirPath(FolderID, LoginUserInfo.sUserID); //新文件路径 string newpath = sBaseDir +"/"+fileinfo.Name; //移动 fileinfo.MoveTo(Path.Combine(fullurl, newpath));View Code
文件删除
//获取文件 FileInfo fileinfo = new FileInfo(fullurl); fileinfo.Delete(); //删除文件
标签:重命名,文件,fileinfo,c#,文件夹,new,FileInfo,Response From: https://www.cnblogs.com/ZhuMeng-Chao/p/16930313.html