欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#的File类实现文件操作实例详解

程序员文章站 2023-12-18 11:15:46
c#对文件的操作相当方便,主要涉及到四个类:file、fileinfo、directory、directoryinfo,前两个提供了针对文件的操作,后两个提供了针对目录的操...

c#对文件的操作相当方便,主要涉及到四个类:file、fileinfo、directory、directoryinfo前两个提供了针对文件的操作,后两个提供了针对目录的操作,类图关系如下:

C#的File类实现文件操作实例详解

本文举例详述了file类的用法。file中提供了许多的静态方法,使用这些静态方法我们可以方便的对文件进行读写查等基本操作。

具体用法说明及相关示例如下:

1、读文件:

// 打开一个文件,将文件的内容读入一个字符串,然后关闭该文件。
public static byte[] readallbytes(string path); 
// 打开一个文本文件,读取文件的所有行,然后关闭该文件。 
public static string[] readalllines(string path); 
// 打开一个文件,使用指定的编码读取文件的所有行,然后关闭该文件。 
public static string[] readalllines(string path, encoding encoding); 
// 打开一个文本文件,读取文件的所有行,然后关闭该文件。 
public static string readalltext(string path); 
// 打开一个文件,使用指定的编码读取文件的所有行,然后关闭该文件。 
public static string readalltext(string path, encoding encoding); 
// 读取文件的文本行。 
public static ienumerable<string> readlines(string path); 
// 读取具有指定编码的文件的文本行。 
public static ienumerable<string> readlines(string path, encoding encoding);

2、写文件:

// 创建一个新文件,在其中写入指定的字节数组,然后关闭该文件。如果目标文件已存在,则覆盖该文件。 
public static void writeallbytes(string path, byte[] bytes); 
// 创建一个新文件,在其中写入一组字符串,然后关闭该文件。
public static void writealllines(string path, ienumerable<string> contents); 
// 创建一个新文件,在其中写入指定的字符串数组,然后关闭该文件。 
public static void writealllines(string path, string[] contents); 
// 使用指定的编码创建一个新文件,在其中写入一组字符串,然后关闭该文件。 
public static void writealllines(string path, ienumerable<string> contents, encoding encoding); 
// 创建一个新文件,使用指定的编码在其中写入指定的字符串数组,然后关闭该文件。 
public static void writealllines(string path, string[] contents, encoding encoding); 
// 创建一个新文件,在其中写入指定的字符串,然后关闭文件。如果目标文件已存在,则覆盖该文件。 
public static void writealltext(string path, string contents); 
// 创建一个新文件,在其中写入指定的字符串,然后关闭文件。如果目标文件已存在,则覆盖该文件。 
public static void writealltext(string path, string contents, encoding encoding);

3、追加内容:

// 在一个文件中追加文本行,然后关闭该文件。 
public static void appendalllines(string path, ienumerable<string> contents); 
// 使用指定的编码向一个文件中追加文本行,然后关闭该文件。 
public static void appendalllines(string path, ienumerable<string> contents, encoding encoding); 
// 打开一个文件,向其中追加指定的字符串,然后关闭该文件。如果文件不存在,此方法创建一个文件,将指定的字符串写入文件,然后关闭该文件。
 public static void appendalltext(string path, string contents);
 // 将指定的字符串追加到文件中,如果文件还不存在则创建该文件。 
public static void appendalltext(string path, string contents, encoding encoding); 
// 创建一个 system.io.streamwriter,它将 utf-8 编码文本追加到现有文件。 
public static streamwriter appendtext(string path);

4、创建文件:

// 在指定路径中创建或覆盖文件。 
public static filestream create(string path);
 // 创建或覆盖指定的文件。 
public static filestream create(string path, int buffersize); 
// 创建或覆盖指定的文件,并指定缓冲区大小和一个描述如何创建或覆盖该文件的 system.io.fileoptions 值。 
public static filestream create(string path, int buffersize, fileoptions options); 
// 创建或覆盖具有指定的缓冲区大小、文件选项和文件安全性的指定文件。 
public static filestream create(string path, int buffersize, fileoptions options, filesecurity filesecurity);

5、打开文件:

// 打开指定路径上的 system.io.filestream,具有读/写访问权限。 
public static filestream open(string path, filemode mode); 
// 以指定的模式和访问权限打开指定路径上的 system.io.filestream。 
public static filestream open(string path, filemode mode, fileaccess access); 
// 打开指定路径上的 system.io.filestream,具有指定的读、写或读/写访问模式以及指定的共享选项。 
public static filestream open(string path, filemode mode, fileaccess access, fileshare share); 
// 打开现有文件以进行读取。 
public static filestream openread(string path);

6、获取和设置文件属性:

// 获取一个 system.security.accesscontrol.filesecurity 对象,它封装指定文件的访问控制列表 (acl) 条目。 
public static filesecurity getaccesscontrol(string path);
// 获取一个 system.security.accesscontrol.filesecurity 对象,它封装特定文件的指定类型的访问控制列表 (acl)项。 
public static filesecurity getaccesscontrol(string path, accesscontrolsections includesections); 
// 获取在此路径上的文件的 system.io.fileattributes。 
public static fileattributes getattributes(string path); 
// 返回指定文件或目录的创建日期和时间。 
public static datetime getcreationtime(string path); 
// 返回指定的文件或目录的创建日期及时间,其格式为协调世界时 (utc)。 
public static datetime getcreationtimeutc(string path); 
// 返回上次访问指定文件或目录的日期和时间。
 public static datetime getlastaccesstime(string path);
 // 返回上次访问指定的文件或目录的日期及时间,其格式为协调世界时 (utc)。 
public static datetime getlastaccesstimeutc(string path);
 // 返回上次写入指定文件或目录的日期和时间。 
public static datetime getlastwritetime(string path);
// 返回上次写入指定的文件或目录的日期和时间,其格式为协调世界时 (utc)。 
public static datetime getlastwritetimeutc(string path); 
// 对指定的文件应用由 system.security.accesscontrol.filesecurity 对象描述的访问控制列表 (acl) 项。 
public static void setaccesscontrol(string path, filesecurity filesecurity);
 // 设置指定路径上文件的指定的 system.io.fileattributes。 
public static void setattributes(string path, fileattributes fileattributes); 
// 设置创建该文件的日期和时间。 
public static void setcreationtime(string path, datetime creationtime); 
// 设置文件创建的日期和时间,其格式为协调世界时 (utc)。 
public static void setcreationtimeutc(string path, datetime creationtimeutc); 
// 设置上次访问指定文件的日期和时间。 
public static void setlastaccesstime(string path, datetime lastaccesstime); 
// 设置上次访问指定的文件的日期和时间,其格式为协调世界时 (utc)。 
public static void setlastaccesstimeutc(string path, datetime lastaccesstimeutc);
 // 设置上次写入指定文件的日期和时间。 
public static void setlastwritetime(string path, datetime lastwritetime); 
// 设置上次写入指定的文件的日期和时间,其格式为协调世界时 (utc)。
 public static void setlastwritetimeutc(string path, datetime lastwritetimeutc);

7、复制、移动、替换:

// 将现有文件复制到新文件。不允许覆盖同名的文件。 
public static void copy(string sourcefilename, string destfilename); 
// 将现有文件复制到新文件。允许覆盖同名的文件。 
public static void copy(string sourcefilename, string destfilename, bool overwrite);
 // 将指定文件移到新位置,并提供指定新文件名的选项。 
public static void move(string sourcefilename, string destfilename); 
// 使用其他文件的内容替换指定文件的内容,这一过程将删除原始文件,并创建被替换文件的备份。
 public static void replace(string sourcefilename, string destinationfilename, string destinationbackupfilename);
 // 用其他文件的内容替换指定文件的内容,删除原始文件,并创建被替换文件的备份和(可选)忽略合并错误。 
public static void replace(string sourcefilename, string destinationfilename, string destinationbackupfilename, bool ignoremetadataerrors);

8、加密解密、删除、判定是否存在:

// 将某个文件加密,使得只有加密该文件的帐户才能将其解密。 
public static void encrypt(string path); 
// 解密由当前帐户使用 system.io.file.encrypt(system.string) 方法加密的文件。
 public static void decrypt(string path);
 // 删除指定的文件。如果指定的文件不存在,则不引发异常 
public static void delete(string path); 
// 确定指定的文件是否存在。
 public static bool exists(string path);

总结:

通过上面的函数声明及相关注释说明,相信大家应该很清楚如何是好这些方法了。同时,看到如此多的函数,我们也很清楚的知道,file类已经可以满足我们对文件操作的基本需求。
这里还需要注意一点:file类通过静态方法的方式为我们提供了操作文件的途径

上一篇:

下一篇: