C#常用的文件操作 (转)

C#常用的文件操作

C#常用的文件操作(网上收集)
C#写入/读出文本文件,包括创建文件,追加文件,修改文件,等等操作,个人觉得很适用,所以收藏了,和大家分享

public void Page_Load(Object src,EventArgs e)  
{  
   StreamWriter rw 
= File.CreateText(Server.MapPath(".")+"\\myText.txt");  
   rw.WriteLine(
"追逐理想");  
   rw.WriteLine(
"kzlll");  
   rw.WriteLine(
".NET笔记");  
   rw.Flush();  
   rw.Close();  
}
 
打开文本文件 
StreamReader sr 
= File.OpenText(Server.MapPath(".")+"\\myText.txt");  
StringBuilder output 
= new StringBuilder();  
string rl;  
while((rl=sr.ReadLine())!=null)  
{  
output.Append(rl
+"<br>");  
}
  
lblFile.Text 
= output.ToString();  
sr.Close();  
  
 
C#追加文件 
    StreamWriter sw 
= File.AppendText(Server.MapPath(".")+"\\myText.txt");  
    sw.WriteLine(
"追逐理想");  
    sw.WriteLine(
"kzlll");  
    sw.WriteLine(
".NET笔记");  
    sw.Flush();  
    sw.Close();  
C#拷贝文件 
        
string OrignFile,NewFile;  
        OrignFile 
= Server.MapPath(".")+"\\myText.txt";  
        NewFile 
= Server.MapPath(".")+"\\myTextCopy.txt";  
        File.Copy(OrignFile,NewFile,
true);  
C#删除文件 
        
string delFile = Server.MapPath(".")+"\\myTextCopy.txt";  
        File.Delete(delFile);  
C#移动文件 
      
string OrignFile,NewFile;  
      OrignFile 
= Server.MapPath(".")+"\\myText.txt";  
      NewFile 
= Server.MapPath(".")+"\\myTextCopy.txt";  
      File.Move(OrignFile,NewFile);  

C#创建目录  
          
// 创建目录c:\sixAge  
          DirectoryInfo d=Directory.CreateDirectory("c:\\sixAge");  
          
// d1指向c:\sixAge\sixAge1  
          DirectoryInfo d1=d.CreateSubdirectory("sixAge1");  
          
// d2指向c:\sixAge\sixAge1\sixAge1_1  
          DirectoryInfo d2=d1.CreateSubdirectory("sixAge1_1");  
          
// 将当前目录设为c:\sixAge  
          Directory.SetCurrentDirectory("c:\\sixAge");  
          
// 创建目录c:\sixAge\sixAge2  
          Directory.CreateDirectory("sixAge2");  
          
// 创建目录c:\sixAge\sixAge2\sixAge2_1  
          Directory.CreateDirectory("sixAge2\\sixAge2_1");  
 
递归删除文件夹及文件 
<%@ Page Language=C#%>  
<%@ Import namespace="System.IO"%>  
<Script runat=server>  
public void DeleteFolder(string dir)  
{  
     
if (Directory.Exists(dir))   //如果存在这个文件夹删除之  
       {  
           
foreach(string d in Directory.GetFileSystemEntries(dir))  
              
{  
                 
if(File.Exists(d))  
                 File.Delete(d);    
//直接删除其中的文件  
                 else  
                 DeleteFolder(d);       
//递归删除子文件夹  
               }
  
            Directory.Delete(dir);    
//删除已空文件夹  
            Response.Write(dir+"  文件夹删除成功");  
        }
  
     
else  
        Response.Write(dir
+"  该文件夹不存在");  //如果文件夹不存在则提示  
}
  
protected void Page_Load (Object sender ,EventArgs e)  
{  
string Dir="D:\\gbook\\11";  
DeleteFolder(Dir);           
//调用函数删除文件夹  
}
  
</Script>  

 

 

 

 

 
// ======================================================
  
// 实现一个静态方法将指定文件夹下面的所有内容copy到目标文件夹下面
  
// 如果目标文件夹为只读属性就会报错。
  
// April 18April2005 In STU
  
// ======================================================
  public static void CopyDir(string srcPath,string aimPath)
  
{
   
try
   
{
    
// 检查目标目录是否以目录分割字符结束如果不是则添加之
    if(aimPath[aimPath.Length-1!= Path.DirectorySeparatorChar) 
     aimPath 
+= Path.DirectorySeparatorChar;
    
// 判断目标目录是否存在如果不存在则新建之
    if(!Directory.Exists(aimPath)) Directory.CreateDirectory(aimPath);
    
// 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
    
// 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
    
// string[] fileList = Directory.GetFiles(srcPath);
    string[] fileList = Directory.GetFileSystemEntries(srcPath);
    
// 遍历所有的文件和目录
    foreach(string file in fileList)
    
{
     
// 先当作目录处理如果存在这个目录就递归Copy该目录下面的文件
     if(Directory.Exists(file))
      CopyDir(file,aimPath
+Path.GetFileName(file));
      
// 否则直接Copy文件
     else
      File.Copy(file,aimPath
+Path.GetFileName(file),true);
    }

   }

   
catch (Exception e)
   
{
    MessageBox.Show (e.ToString());
   }

  }
 

  
// ======================================================
  
// 实现一个静态方法将指定文件夹下面的所有内容Detele
  
// 测试的时候要小心操作,删除之后无法恢复。
  
// April 18April2005 In STU
  
// ======================================================
  public static void DeleteDir(string aimPath)
  
{
   
try
   
{
    
// 检查目标目录是否以目录分割字符结束如果不是则添加之
    if(aimPath[aimPath.Length-1!= Path.DirectorySeparatorChar) 
     aimPath 
+= Path.DirectorySeparatorChar;
    
// 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
    
// 如果你指向Delete目标文件下面的文件而不包含目录请使用下面的方法
    
// string[] fileList = Directory.GetFiles(aimPath);
    string[] fileList = Directory.GetFileSystemEntries(aimPath);
    
// 遍历所有的文件和目录
    foreach(string file in fileList)
    
{
     
// 先当作目录处理如果存在这个目录就递归Delete该目录下面的文件
     if(Directory.Exists(file))
     
{
      DeleteDir(aimPath
+Path.GetFileName(file));
     }

      
// 否则直接Delete文件
     else
     
{
      File.Delete (aimPath
+Path.GetFileName(file));
     }

    }

    
//删除文件夹
    System.IO .Directory .Delete (aimPath,true);
   }

   
catch (Exception e)
   
{
    MessageBox.Show (e.ToString());
   }

  }

 

 

需要引用命名空间:
using System.IO;

/**//**//**//// <summary>
  
/// 拷贝文件夹(包括子文件夹)到指定文件夹下,源文件夹和目标文件夹均需绝对路径. 格式: CopyFolder(源文件夹,目标文件夹);
  
/// </summary>
  
/// <param name="strFromPath"></param>
  
/// <param name="strToPath"></param>


  
//--------------------------------------------------
  
//作者:明天去要饭  QQ:305725744
 
//---------------------------------------------------

  
public static void CopyFolder(string strFromPath,string strToPath)
  
{
   
//如果源文件夹不存在,则创建
   if (!Directory.Exists(strFromPath))
   
{    
    Directory.CreateDirectory(strFromPath);
   }
   

   
//取得要拷贝的文件夹名
   string strFolderName = strFromPath.Substring(strFromPath.LastIndexOf("\\"+ 1,strFromPath.Length - strFromPath.LastIndexOf("\\"- 1);   

   
//如果目标文件夹中没有源文件夹则在目标文件夹中创建源文件夹
   if (!Directory.Exists(strToPath + "\\" + strFolderName))
   
{    
    Directory.CreateDirectory(strToPath 
+ "\\" + strFolderName);
   }

   
//创建数组保存源文件夹下的文件名
   string[] strFiles = Directory.GetFiles(strFromPath);

   
//循环拷贝文件
   for(int i = 0;i < strFiles.Length;i++)
   
{
    
//取得拷贝的文件名,只取文件名,地址截掉。
    string strFileName = strFiles[i].Substring(strFiles[i].LastIndexOf("\\"+ 1,strFiles[i].Length - strFiles[i].LastIndexOf("\\"- 1);
    
//开始拷贝文件,true表示覆盖同名文件
    File.Copy(strFiles[i],strToPath + "\\" + strFolderName + "\\" + strFileName,true);
   }

  
   
//创建DirectoryInfo实例
   DirectoryInfo dirInfo = new DirectoryInfo(strFromPath);
   
//取得源文件夹下的所有子文件夹名称
   DirectoryInfo[] ZiPath = dirInfo.GetDirectories();
   
for (int j = 0;j < ZiPath.Length;j++)
   
{
    
//获取所有子文件夹名
    string strZiPath = strFromPath + "\\" + ZiPath[j].ToString();   
    
//把得到的子文件夹当成新的源文件夹,从头开始新一轮的拷贝
    CopyFolder(strZiPath,strToPath + "\\" + strFolderName);
   }

  }

转载于:https://www.cnblogs.com/RobotTech/archive/2007/08/21/863585.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/549781.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CSS3动画和VUE动画整理

W3School CSS3过渡 浏览器支持 Internet Explorer 10、Firefox、Chrome 以及 Opera 支持 transition 属性。Safari 需要前缀 -webkit-。 注释&#xff1a;Internet Explorer 9 以及更早的版本&#xff0c;不支持 transition 属性。 注释&#xff1a;Chrome 25 以及更早的版本…

VueJS项目

VueJS项目 - awesome-vue vue-cli引用jquery, bootstrap, bootstrap-table 引用jquery 找到vue-project/build/webpack.base.conf.js文件&#xff0c;在module.exports下添加plugins, 需要在之前&#xff0c;引用webpack, var webpack require(webpack); 参考 plugins: [n…

[OSG]如何用Shader得到物体的世界坐标

最近群里面有个朋友问我关于如何得到OpenGL世界坐标的问题&#xff0c;当时我还弄错了&#xff0c;误以为gl_ModelViewMatrix*gl_Vertex就是世界坐标。因最近也突然遇到了世界坐标的问题&#xff0c;所以花了一些时间来研究这个问题&#xff0c;网上也有人问&#xff0c;但或许…

Exposing Windows Forms Controls as ActiveX controls

转&#xff1a;http://www.codeproject.com/cs/miscctrl/exposingdotnetcontrols.asp?df100&forumid2373&exp0&select1359005 Download demo project - 15 Kb This article will describe how to utilise Windows Forms controls outside of .NET. In a recent MS…

QT_C++

QT_C C 与 C 区别&#xff1a;  面向过程&#xff1a;吃&#xff08;狗&#xff0c;屎&#xff09; 面向对象&#xff1a;狗. 吃&#xff08;屎&#xff09; ^ . ^ 博客&#xff1a;https://www.runoob.com/cplusplus/cpp-tutorial.html 插入符&#xff1a;<< 控制符…

静态路由的实现

在路由器A上做如下配置&#xff1a;router(config)#hostname AA(config)#interface f0/0A(config-if)#ip address 192.168.1.1 255.255.255.0 A(config-if)#no shutdownA(config)#interface f0/1A(config-if)#ip address 192.168.2.1 255.255.255.0 A(config-if)#no shutdownA(…

2019-08-09 纪中NOIP模拟赛B组

T1 [JZOJ1035] 粉刷匠 题目描述 windy有N条木板需要被粉刷。 每条木板被分为M个格子。 每个格子要被刷成红色或蓝色。 windy每次粉刷&#xff0c;只能选择一条木板上一段连续的格子&#xff0c;然后涂上一种颜色。 每个格子最多只能被粉刷一次。 如果windy只能粉刷 T 次&#x…

vue3实现打字机的效果

前言&#xff1a; vue3项目中实现打字机的效果。 实现效果&#xff1a; 实现步骤&#xff1a; 1、安装插件 npm i vue3typed 2、main.js中配置 import vuetyped from vue3typedconst app createApp(App) // 挂载打字机的全局方法 app.use(vuetyped) 3、界面使用 <vuet…

hightopo学习系列:hightopo介绍(一)

起因 新的软件主管来公司以后&#xff0c;有整整2周的时间没有搭理前端开发。就在这周一快下班的时候&#xff0c;突然和我说话了。问了我一些以前用的图形库&#xff0c;并让我开始了解hightopo。甩给了我一个全拼&#xff0c;就拂袖而去&#xff0c;留下一脸懵逼的我。 没办…

Unity工程无代码化

目的 Unity默认是将代码放入工程&#xff0c;这样容易带来一些问题。1. 代码和资源混合&#xff0c;职能之间容易互相误改。2. 当代码量膨胀到一定程度后&#xff0c;代码的编译时间长到无法忍受。新版的unity支持通过asmdef来将代码分成多个dll工程&#xff0c;有所缓解。所以…

曾国藩传 读后感

转载于:https://www.cnblogs.com/eat-too-much/p/11335113.html

深入C#学习系列一:序列化(Serialize)、反序列化(Deserialize)

深入C#学习系列一&#xff1a;序列化(Serialize)、反序列化(Deserialize) 序列化又称串行化&#xff0c;是.NET运行时环境用来支持用户定义类型的流化的机制。其目的是以某种存储形成使自定义对象持久化&#xff0c;或者将这种对象从一个地方传输到另一个地方。.NET框架提供了两…

十一月·飘·立冬

十一月的南粤叶依然青翠在枝头与秋风和舞落叶遍地的诗意画面在博客生活逝如流年 渐走渐淡回忆飘然而来又飘然而去秋的最后一天放下回忆 飘去天涯飘不要说也不要问目光交错的一瞬注定了今生缘分此情可以见真心春风急 秋风也狠乱乱纷纷 是红尘浮浮沉沉 似幻似真金枝玉叶的结…

Centos 系统安装NetCore SDK命令以及一系列操作(1)

17年买的jesse老师的课程&#xff0c;虽然说NetCore出来很久了&#xff0c;自己打入行的时候就奔它去的&#xff0c;但。。。。废话不说了&#xff0c;还是自己做了再说吧&#xff0c; 首先需要一个Centos系统来让我们开始玩&#xff0c;下载地址&#xff1a;https://www.cento…

如何高效地判断奇数和偶数

在我们日常的编程当中&#xff0c;常常会遇到判断某个整数属于奇数还是偶数的情况。 大家一般的处理做法是用这个整数和2取模。然后判断是等于1还是等于0。 这里&#xff0c;我要为大家介绍一种快速有效的判断做法&#xff0c;利用2进制进行判断。 大家都知道&#xff0c;奇数的…

Windows Azure Traffic Manager (6) 使用Traffic Manager,实现本地应用+云端应用的高可用...

《Windows Azure Platform 系列文章目录》 注意&#xff1a;本文介绍的是使用国内由世纪互联运维的Azure China服务。 以前的Traffic Manager&#xff0c;背后的Service Endpoint必须是Azure数据中心的Cloud Service。 现在最新的Traffic Manager&#xff0c;Endpoint不仅仅支持…

Windows Azure Cloud Service (17) Role Endpoint

《Windows Azure Platform 系列文章目录》 在Windows Azure平台中&#xff0c;用户最多可以对以个Role指定5个Endpoint。而一个Hosted Service最多允许包含5个Role,所以说在一个Hosted Service中用户最多能定义25个Endpoint。 而对于每一个Endpoint&#xff0c;使用者需要设定如…

sentry + vue实现错误日志监控

起因 项目采用vue全家桶开发&#xff0c;现在拟嵌入sentry&#xff0c;实现对于线上网站进行错误日志记录。其实上传日志很简单&#xff0c;基本配置就可以了&#xff0c;但是上传配套的sourcemap则颇为费劲。这里记录一下使用心得。 实施步骤 上传日志 sentry使用文档&…

OSPF单域实验报告

1.1 实验任务<?xml:namespace prefix o ns "urn:schemas-microsoft-com:office:office" />(1) 配置Loopback地址作为路由器的ID。(2) 配置OSPF的进程并在相应的接口上启用。(3) OSPF起来后&#xff0c;更新计时器。1.2 实验环境和网络拓扑<?xm…

sql server 2005 COUNT_BIG (Transact-SQL)

返回组中的项数。COUNT_BIG 的用法与 COUNT 函数类似。两个函数唯一的差别是它们的返回值。COUNT_BIG 始终返回 bigint 数据类型值。COUNT 始终返回 int 数据类型值。后面可能跟随 OVER 子句。 Transact-SQL 语法约定 语法 COUNT_BIG ( { [ ALL | DISTINCT ] expression } | * …