开发者

how to give read only access to the xml file in c#? [closed]

开发者 https://www.devze.com 2023-01-03 06:38 出处:网络
It's difficult to tell wha开发者_开发百科t is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form.
It's difficult to tell wha开发者_开发百科t is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 12 years ago.

how to give read only access to the xml file in c#?


This code will help :-

using System.IO;

FileInfo flInfo = new FileInfo(@"c:\alok.txt"); // load file
flInfo.Attributes = FileAttributes.ReadOnly; // set file attribute
0

精彩评论

暂无评论...
验证码 换一张
取 消