c#改变文件属性.txt

来自「硬盘杀手病毒技术详细特征 [shief.rar] - 这是一个可以在后台偷取」· 文本 代码 · 共 19 行

TXT
19
字号
string path   =   @"c:\temp\MyTest.txt";   
 //   Delete   the   file   if   it   exists.   
 if(!File.Exists(path))     
 {   
    File.Create(path);   
 }   
 if((File.GetAttributes(path)&FileAttributes.Hidden)==FileAttributes.Hidden)     
 {   
    //Show the file.   
    File.SetAttributes(path,FileAttributes.Archive);   
    Console.WriteLine("The   {0}   file   is   no   longer   hidden.",   path);   
 }     
 else     
 {   
     //Hide   the   file. 
     File.SetAttributes(path,   File.GetAttributes(path)|FileAttributes.Hidden);   
     Console.WriteLine("The   {0}   file   is   now   hidden.",   path);   
}   

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?