这些年代码也写了不少,关于文件I/O的操作也写了很多,基本上File类与FileInfo类也没有刻意的去看性能,有时用着也挺糊涂的,今天就将这些I/0操作总结下,老样子贴码

首先先了解清楚下File类与FileInfo类的定义:

File类:

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

将 File 类用于典型的操作,如复制、移动、重命名、创建、打开、删除和追加到文件。也可将 File 类用于获取和设置文件属性或有关文件创建、访问及写入操作的 DateTime 信息。

许多 File 方法在您创建或打开文件时返回其他 I/O 类型。可以使用这些其他类型进一步处理文件。有关更多信息,请参见特定的 File 成员,如 OpenText、CreateText 或 Create。

由于所有的 File 方法都是静态的,所以如果只想执行一个操作,那么使用 File 方法的效率比使用相应的 FileInfo 实例方法可能更高。所有的 File 方法都要求当前所操作的文件的路径是存在的(不包含文件对象)。

File 类的静态方法对所有方法都需要占用一定的cpu处理时间来进行安全检查,即使使用不同的File类的方法重复访问同一个文件时也是如此。

如果打算多次重用某个对象,可考虑改用 FileInfo 的相应实例方法,因为只在创建FileInfo对象时执行一次安全检查。并不总是需要安全检查。

默认情况下,将向所有用户授予对新文件的完全读/写访问权限。

1             string path = @"G:\temp\temp2\myTest.txt";
2             //∴需要先判断路径是否是存在的 不存在则创建
3             string[] strPath=path.Split('\\');
4             string path2= path.Replace("\\" + strPath[strPath.Length - 1], "");
5             if (!Directory.Exists(path2))
6             {
7                 Directory.CreateDirectory(path2);
8             }

 1             //第一种写法:基于字符方式的读取
 2             if (!System.IO.File.Exists(path))//∵File.Exists()只是判断文件对象是否存在 而不会去判断你的路径是否是真实的
 3             {
 4                 //Create a file to write to.
 5                 using (StreamWriter sw = System.IO.File.CreateText(path))//Creates or Opens a file for writting UTF-8 Encoded text
 6                 {
 7                     sw.WriteLine("Hello");
 8                     sw.WriteLine("this text file is to use File.Create() method to create.");
 9                     sw.WriteLine("@" + DateTime.Now.ToString("yyyyMMddHHmmsss"));
10                 }
11                 //open the file to read from.
12                 using (StreamReader sr = System.IO.File.OpenText(path))
13                 {
14                     string s = "";
15                     while ((s = sr.ReadLine()) != null)//这个地方判断一定得是null 是""就会发生死循环16                     {
17                         Response.Write(s + "<br>");
18                     }
19                 }
20             }

注意:基于字节的方式适用于任何场合,因为任何文件的数据都是基于字节的方式有序存放的。基于字节的方式适用于操作二进制文件,比如exe文件、视频、音频文件等等。其他的文本文件大可选择基于字符的方式操作

 1             //第二种写法:基于字节方式的读取
 2             if (!System.IO.File.Exists(path))
 3             {
 4                 //create the file
 5                 using (FileStream fs = System.IO.File.Create(path)) { }
 6                 //open the stream and write to it
 7                 using (FileStream fs = System.IO.File.OpenWrite(path))
 8                 {
 9                     byte[] info = System.Text.Encoding.UTF8.GetBytes("This is to test the OpenWrite method.");
10                     fs.Write(info, 0, info.Length);
11                 }
12                 //open the stream and read it back.
13                 using (FileStream fs = System.IO.File.OpenRead(path))
14                 {
15                     byte[] info = new byte[(int)fs.Length];
16                     fs.Read(info, 0, info.Length);
17                     Response.Write(System.Text.Encoding.UTF8.GetString(info));
18                 }
19             }
20             //第二种写法 可以使用BinaryWriter 和 BinaryReader 类读取和写入数据,注意这两个类不是用于读取和写入字符串。
21             if(!System.IO.File.Exists(path))
22             {
23             //try
24             //{25                 FileStream fs = new FileStream(path, FileMode.Create);//CreateNew是创建一个新的,但如果文件已存在则会产生一个错误:IOException||Create等效于 文件存在?覆盖:CreateNew;
26                 BinaryWriter bw = new BinaryWriter(fs);
27                 bw.Write("使用BinaryWriter写入数据" + DateTime.Now.ToString("yyyy/MM/dd HH:mm:sss"));
28                 bw.Close();
29                 fs.Close();
30             //}
31             //catch (Exception ee)
32             //{
33             //   Response.Write(ee.GetType().Name);
34             //}
35                 fs = new FileStream(path, FileMode.Open, FileAccess.Read);
36                 BinaryReader br = new BinaryReader(fs);
37                 Response.Write(br.ReadString());//读取数据 需要注意
38                 br.Close();
39                 fs.Close();
40             }

FileInfo类:

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

将 FileInfo 类用于典型的操作,如复制、移动、重命名、创建、打开、删除和追加到文件。

许多 FileInfo 方法在您创建或打开文件时返回其他 I/O 类型。可以使用这些其他类型进一步处理文件。有关更多信息,请参见特定的 FileInfo 成员,如 Open、OpenRead、OpenText、CreateText 或 Create。

如果打算多次重用某个对象,可考虑使用 FileInfo 的实例方法,而不是 File 类的相应静态方法,因为并不总是需要安全检查。

默认情况下,将向所有用户授予对新文件的完全读/写访问权限。

  1         /// <summary>
  2         /// FileInfo类 基于字符的写读文件流
  3         /// </summary>
  4         private void WriteFileInfo()
  5         {
  6             string path1 =Server.MapPath("~/Admin/myDemo/IOFile.txt");
  7             if (path1 != null && path1 != "")
  8             {
  9                 FileInfo fi = new FileInfo(path1);
 10                 if (!fi.Exists)
 11                 {
 12                     using (StreamWriter sw = fi.CreateText())
 13                     {
 14                         sw.WriteLine("hello");
 15                         sw.WriteLine("and");
 16                         sw.WriteLine("wlecome");
 17                     }
 18                 }
 19                 using (StreamReader sr = fi.OpenText())
 20                 {
 21                     string s = "";
 22                     while ((s = sr.ReadLine()) != null) //这个地方判断一定得是null 是“”就会发生死循环
 23                     {
 24                         Response.Write(s + "<br>");
 25                     }
 26                 }
 27                 try
 28                 {
 29                     string path2 = Server.MapPath("~/Admin/myDemo/IOFile1.txt");
 30                     FileInfo fi2 = new FileInfo(path2);
 31                     fi2.Delete();
 32                     fi.CopyTo(path2);
 33                     using (StreamReader sr = fi2.OpenText())
 34                     {
 35                         string s = "";
 36                         while ((s = sr.ReadLine()) != null)
 37                         {
 38                             Response.Write(s + "<br>");
 39                         }
 40                     }
 41                 }
 42                 catch (Exception e)
 43                 {
 44                     Response.Write(e.ToString());
 45                 }
 46             }
 47         }
 48         /// <summary>
 49         /// 基于字符 写文件流
 50         /// </summary>
 51         private void WriteCharFile()
 52         {
 53             string msg = "adfasdfadfasfafd";
 54             FileStream fs = null;
 55             StreamWriter sw =null;
 56             FileInfo fi = new FileInfo(Server.MapPath("~/Admin/myDemo/IOFile.txt"));
 57             if(!fi.Exists)
 58             {
 59                fs= fi.Create();
 60             }else
 61             {
 62                 fs = fi.OpenWrite();
 63
 64
 65             }
 66             sw= new StreamWriter(fs);
 67             sw.Write(msg);
 68             //sw.Flush();//清理当前编写器的所有缓冲区,并使所有缓冲数据写入基础流
 69             sw.Close();
 70             Response.Write("字符 写入流成功");
 71             fs.Close();
 72         }
 73         /// <summary>
 74         /// 基于字符 读文件流
 75         /// </summary>
 76         private void ReadCharFile()
 77         {
 78             string msg = string.Empty;
 79             FileStream fs = null;
 80             FileInfo fi=new FileInfo(Server.MapPath("~/Admin/myDemo/IOFile.txt"));
 81             if (!fi.Exists)
 82             {
 83                 Response.Write("文件对象不存在");
 84             }
 85             else
 86             {
 87                 fs = fi.OpenRead();
 88                 StreamReader sr = new StreamReader(fs);
 89                 string result = sr.ReadToEnd();
 90                 Response.Write(result);
 91                 sr.Close();
 92                 fs.Close();
 93             }
 94         }
 95         /// <summary>
 96         /// 基于字节 写入文件流
 97         /// </summary>
 98         private void WriteByteFile()
 99         {
100             string msg = "欢迎来到Ivan空间";
101             FileStream fs = null;
102             if (msg != null)
103             {
104                 FileInfo fi = new FileInfo(Server.MapPath("~/Admin/myDemo/IOFile.txt"));
105                 byte[] buffer = System.Text.Encoding.UTF8.GetBytes(msg);
106                 if (!fi.Exists)
107                 {
108                     fs = fi.Create();
109
110                 }
111                 else
112                 {
113                     fs = fi.OpenWrite();
114                 }
115                 fs.Write(buffer, 0, buffer.Length);
116                 fs.Close();
117                 Response.Write("字节写入流成功<br>");
118             }
119             else
120             {
121                 Response.Write("字节写入流不成功 原因写入信息为空!<br>");
122             }
123         }
124         /// <summary>
125         /// 基于字节 读文件流
126         /// </summary>
127         private void ReadByteFile()
128         {
129             string msg = string.Empty;
130             FileStream fs = null;
131             byte[] buffer = null;
132             FileInfo fi = new FileInfo(Server.MapPath("~/Admin/myDemo/IOFile.txt"));
133             if (!fi.Exists)
134             {
135                 Response.Write("文件对象不存在<br>");
136             }
137             else
138             {
139                 fs = fi.OpenRead();
140                 buffer = new byte[(int)fs.Length];
141                  fs.Read(buffer, 0, (int)(fs.Length));
142                  Response.Write(System.Text.Encoding.UTF8.GetString(buffer));
143                  fs.Close();
144             }
145         }

转载于:https://www.cnblogs.com/ivan201314/archive/2013/04/23/3036488.html

File类与FileInfo类的区别相关推荐

  1. fileinfo什么意思_C中File类和FileInfo类有什么区别?

    参考答案如下 类和类C中File类和FileInfo类有什么区别? 区别成都社会保险的问题 类和类请教:2011四川会计从业<会计基础>密押试卷(8)第3大题第5小题如何解答? 区别请教: ...

  2. C#文件操作基础之File类和FileInfo类

    文件和I/O流的差异: 文件是一些具有永久存储及特定顺序的字节组成的一个有序的.具有名称的集合. 因此对于文件,我们经常想到文件夹路径,磁盘存储,文件和文件夹名等方面. I/O流提供一种后备存储写入字 ...

  3. 文件及文件夹操作- File类、Directory 类、FileInfo 类、DirectoryInfo 类

    命名空间:using system .IO; 1. File类: 创建:File.Create(路径);创建文件,返回FileStream FileStream fs = File.Create(路径 ...

  4. c# DirectoryInfo 类和 FileInfo 类

    1.DirectoryInfo 类 DirectoryInfo 类派生自 FileSystemInfo 类.它提供了各种用于创建.移动.浏览目录和子目录的方法.该类不能被继承. 2.FileInfo ...

  5. File类与FileInfo类

    File是一个静态类,常用于文件操作,读取,修改文件等等.File类的大部分方法最终都是转换为流(Stream)的操作,只不过是.net提取帮你封装好了这些常用的流.并且会自动清理占用的资源. 例如: ...

  6. C#经验:C#File和FileInfo类的使用

    文件和I/O流的差异: 文件是一些具有永久存储及特定顺序的字节组成的一个有序的.具有名称的集合. 因此对于文件,我们常常想到目录路径,磁盘存储,文件和目录名等方面. I/O流提供一种后备存储写入字节和 ...

  7. C# 获取文件大小,创建时间,文件信息,FileInfo类的属性表

    OpenFileDialog openFileDialog1 = new OpenFileDialog(); if(openFileDialog1.ShowDialog() == DialogResu ...

  8. FileInfo类 c# 1614533684

    FileInfo类 c# 1614533684 这是一个非静态类 可以替换静态类的File的相关操作 方法 实例化对象 判断文件是否存在 拷备文件 如果目标路径已经存在 则会报错 移动文件 剪切操作 ...

  9. C# FileInfo类:文件操作

    C# 语言中FileInfo使用类执行典型操作, 例如复制.移动.重命名.创建.打开.删除和追加到文件. File 类是静态类,其成员也是静态的,通过类名即可访问类的成员:FileInfo 类不是静态 ...

最新文章

  1. 开始接触QM(Quality Management)
  2. 十万浙企上云 阿里云崛起的最大征候?
  3. java 逗号运算符_Java 运算符
  4. Excel-数据分列的多种方法实现
  5. HashMap底层实现原理/HashMap与HashTable区别/HashMap与HashSet区别(转)
  6. 微信公众号中选择时间css,微信公众号到底应该几点推文?
  7. 20200908:链表类题目集合上
  8. eclipse 语言包在线更新地址
  9. redis与数据库同步的解决方案
  10. Revit 2019注册机
  11. java取北京时间_在java中怎么获取北京时间
  12. android 蓝牙sco开发
  13. 云计算进化史及服务模式
  14. unity中获取FPS
  15. ASPM——网络安全的下一个热点
  16. HTML制作员工信息登记表
  17. 想要创建个人博客只需五步骤——所有人看了都能学会的步骤
  18. 《ODAY安全:软件漏洞分析技术》学习心得
  19. ECharts基础柱状图
  20. 【卫朋】营销技能:营销4P之外,还有这些经典理论

热门文章

  1. python爬虫流程-Python爬虫程序架构和运行流程原理解析
  2. python代码格式-Python 代码格式
  3. python做电脑软件-PC端数据下载软件开发(Python)
  4. java和python哪个好就业2020-java和python哪个的前途更好?
  5. 如何查看python是多少位的-请问一下该怎么查看python是32位还是64位?
  6. python语言入门pdf-python语言入门
  7. python打开指定文件-python打包压缩、读取指定目录下的指定类型文件
  8. python怎么读取文件-python如何读取文件的数据
  9. 简明python教程pdf-python简明教程中文pdf
  10. python网课一般多少钱-学习python的时候观看网课学习还是买书学习效率高?