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

C#判断指定文件是否是只读的方法

程序员文章站 2023-11-21 15:53:10
本文实例讲述了c#判断指定文件是否是只读的方法。分享给大家供大家参考。具体如下: c#可以通过fileinfo类获得文件属性,文件属性包含了文件是否是只读的 u...

本文实例讲述了c#判断指定文件是否是只读的方法。分享给大家供大家参考。具体如下:

c#可以通过fileinfo类获得文件属性,文件属性包含了文件是否是只读的

using system;
using system.io;
static class test
{
 static void main()
 {
   fileinfo file = new fileinfo("test.cs");
   console.writeline(file.attributes.tostring());
   if(file.attributes == fileattributes.readonly)
   {
    console.writeline("file is read-only (faulty test).");
   }
   if((file.attributes & fileattributes.readonly) == fileattributes.readonly)
   {
    console.writeline("file is read-only (correct test).");
   }
 }
}

希望本文所述对大家的c#程序设计有所帮助。