File类

Posted 王炜忠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了File类相关的知识,希望对你有一定的参考价值。

 1             //File操作的文本类文件,能用记事本打开的文件就是文本类文件
 2             //File.Create();//生成文件
 3            // File.Delete();//删除文件
 4             //File.Copy();//复制文件
 5             //File.Exists();//判断文件是否存在
 6             //File.Move();//文件剪贴
 7            
 8             string [] slist= File.ReadAllLines(@"D\aaa.txt",Encoding.Default);//读取文件的每一行,返回一个数组
 9             string s = File.ReadAllText(@"D\aa.txt", Encoding.Default);//读取一个文件的所有内容,返回一个string
10            byte [] clist= File.ReadAllBytes(@"D\aa.txt");//将文件内容转换为字节数组
11            string ss = Encoding.GetEncoding("gdk").GetString(clist);//用指定的解码方式将字节数组转换为字符串
12 
13             //以字节格式将内容写入文件
14            string sss = "张三李四王五赵六";
15            byte[] blist = Encoding.Default.GetBytes(sss);
16            File.WriteAllBytes(@"D\aaa.txt",blist);
17 
18 
19             //以字符串数字格式往文件添加数据
20            File.WriteAllLines(@"D\aa.txt",new string[]{"a","b"});
21 
22             //以字符串格式往文件添加数据
23            File.WriteAllText(@"D\aaa.txt","aaa");

 

以上是关于File类的主要内容,如果未能解决你的问题,请参考以下文章

这些 C++ 代码片段有啥作用?

php代码片段: sendFile/videoStream/sendEmail/phpexcel/ffmpeg/zip

[异常解决] Make nRF51 DFU Project Appear "fatal error: uECC.h: No such file or directory"(代码片段

如何通过单击片段内的线性布局从片段类开始新活动?下面是我的代码,但这不起作用

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

pycharm添加Odoo代码片段