c#文件操作(初学者)

比较简单,适合初学者的。

题目:

首先创建一个文件,并将键盘输入的内容写入到文件中;然后以文本方式和二进制方式读写文件,获取文件属性

步骤

1.创建一个控制台程序:打开vs2010,File->new->project,选择console application,名称中写入自己想要的名字即可;我的名称是:File

2.代码编写步骤:

1).创建一个FileStream的对象,定义指向文件的流;

2).创建一个streamwriter对象,向创建的文件中写入从控制台输入的内容;当输入0时输入结束;

3).创建一个streamreader对象,以文本方式读取刚创建的文件中的内容,输出到控制台中;

4).创建一个binaryreader对象,一个个读取其中的字符,并转换成ascii码;

5).创建一个fileInfo对象,获取文件的名称,长度等属性;

3.具体的代码如下:(代码中有讲解)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace File
{
    class Program
    {
        static void Main(string[] args)
        {
            //与创建FileStream对象不同,创建StreamWriter对象不会提供一组类似的选项:
            //除了使用Boolean值添加到文件的末尾或创建新文件之外,根本没有像FileStream类那样
            //指定FileMode属性的选项。而且,没有设置FileAccess属性的选项,因此总是有对文件的读/写权限。
            //为了使用高级参数,必须先在FileStream构造函数中指定这些参数,然后在FileStream对象中创建StreamWriter。
            //StreamWriter sw = new StreamWriter(@"C:\\文件.txt", true);
            //此构造函数中有两个参数,一个是文件名,另一个是布尔值,这个布尔值规定创建对象的方式如下:
             //如果此值为false,则创建一个新文件,如果存在原文件,则覆盖。
             //如果此值为true,则打开文件保留原来数据,如果找不到文件,则创建新文件。
            try
            {
                FileStream fs = new FileStream(@"C:\\文件.txt", FileMode.OpenOrCreate, FileAccess.ReadWrite);
                StreamWriter sw = new StreamWriter(fs);
                string str = Console.ReadLine();//获取键盘上输入的内容,最终写到文件中
                while (str != "0")//当输入0时,输入结束
                {
                    sw.WriteLine(str);
                    str = Console.ReadLine();   
                }
                sw.Close();
            }
            catch (IOException ex)
            {
                Console.WriteLine(ex.Message);
                Console.ReadLine();
                return;
            }
            try
            {
                FileStream fs = new FileStream(@"C:\\文件.txt", FileMode.OpenOrCreate, FileAccess.ReadWrite);
                StreamReader sr = new StreamReader(fs);
                Console.WriteLine("***************以文本方式读文件********************************");
                string strs = sr.ReadLine();
                while (strs != null)
                {
                    Console.WriteLine(strs);
                    strs = sr.ReadLine();
                }
                sr.Close();
            }
            catch (IOException ex)
            {
                Console.WriteLine(ex.Message);
                return;
            }
            Console.WriteLine();
            try
            {
                Console.WriteLine("***************以二进制方式读文件********************************");
                FileStream fs = new FileStream(@"C:\\文件.txt", FileMode.OpenOrCreate, FileAccess.ReadWrite);
                BinaryReader br = new BinaryReader(fs);
                while (br.BaseStream.Position < br.BaseStream.Length)
                {
                    char ch = br.ReadChar();//获取字符中的每个字符
                    int i=Convert.ToInt32(ch);//获得字符的ASCII码
                    if (i == 10)//ASCII码是10是换行键
                    {
                        continue;
                    }
                    if(i==13)//ASCII码是13是回车键
                    {
                        Console.WriteLine();
                        continue;
                    }
                    Console.Write(Convert.ToInt32(ch));
                    if (i != 13&&i!=10)
                        Console.Write(".");
                   
                }
                br.Close();
                fs.Close();
            }
            catch (IOException ex)
            {
                Console.WriteLine(ex.Message);
                return;
            }
            Console.WriteLine();
            Console.WriteLine();
            Console.WriteLine("***************读取文件属性********************************");
            FileInfo fileInfo = new FileInfo(@"C:\\文件.txt");
            Console.WriteLine("文件名                  :"+fileInfo.Name);
            Console.WriteLine("文件名<含路径>          :"+fileInfo.FullName);
            Console.WriteLine("文件大小<byte>          :" + fileInfo.Length);
            Console.WriteLine("文件创建时间            :" + fileInfo.CreationTime);
        }
    }
}

程序运行的效果如下:

 附:整个的工程源码在我的资源中,可下载。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值