要在C#中的文件写的最好的方法(Best way to make a file writeable

2019-07-31 01:38发布

我正在尝试设置标志,使Read Only复选框出现,当你right click \ Properties上的文件。

谢谢!

Answer 1:

方法有两种:

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);

上FileInfo的IsReadOnly属性本质上是做位翻转你就必须在第二个方法做手工。



Answer 2:

设置只读标志,实际上使文件不可写:

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你可能最终在这个过程中失去了其他标志。



Answer 3:

C# :

File.SetAttributes(文件路径,FileAttributes.Normal);

File.SetAttributes(文件路径,FileAttributes.ReadOnly);



文章来源: Best way to make a file writeable in c#