情况:我正在创建一个文件,我想要限制访问权限。应授予的仅访问权限为:
这是一个Windows控制台应用程序。
当前代码:
string secretFile = string.Format("{0}_secret.txt", System.Security.Principal.WindowsIdentity.GetCurrent().Name);
if(!File.Exists(secretFile))
{
File.Create(secretFile);
System.Security.AccessControl.FileSecurity fileSec = //What do I do here?
}