我正在尝试设置导致Read Only
复选框在您right click \ Properties
打开文件时出现的标志。
谢谢!
两种方式:
System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath);
fileInfo.IsReadOnly = true/false;
或者
// Careful! This will clear other file flags e.g. `FileAttributes.Hidden`
File.SetAttributes(filePath, FileAttributes.ReadOnly/FileAttributes.Normal);
IsReadOnly
on 属性基本上完成了您在第二种FileInfo
方法中必须手动进行的位翻转。
要设置只读标志,实际上使文件不可写:
File.SetAttributes(filePath,
File.GetAttributes(filePath) | FileAttributes.ReadOnly);
要删除只读标志,实际上使文件可写:
File.SetAttributes(filePath,
File.GetAttributes(filePath) & ~FileAttributes.ReadOnly);
要切换只读标志,使其与现在相反:
File.SetAttributes(filePath,
File.GetAttributes(filePath) ^ FileAttributes.ReadOnly);
这基本上是有效的位掩码。您设置一个特定位来设置只读标志,您清除它以删除该标志。
请注意,上面的代码不会更改文件的任何其他属性。换句话说,如果文件在您执行上述代码之前是隐藏的,那么之后它也会保持隐藏状态。如果您只是将文件属性设置为,.Normal
否则.ReadOnly
您最终可能会在此过程中丢失其他标志。
C# :
File.SetAttributes(filePath, FileAttributes.Normal);
File.SetAttributes(filePath, FileAttributes.ReadOnly);