C#Winform文件流FileStream实例讲解

一、FileStream类介绍

FileStream类读取、写入、打开和关闭文件系统上的文件,并操作其他与文件相关的操作系统句柄,包括管道、标准输入和标准输出。

函数及方法

1.1构造函数

FileStream() :

public FileStream (string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize, bool useAsync);

参数1文件路径:对象将封装的文件的相对路径或绝对路径

参数2FileMode:用于确定文件的打开或创建方式的枚举值之一

CreateNew创建新文件

Create创建并覆盖

Open打开

你可能感兴趣的:(C#Winform设计,c#,FileStream,StreamReader,StreamWriter,读写实例)