FileSystemRights ToString格式

时间:2012-10-24 14:47:11

标签: c# .net-4.0 posix

我正在使用C#枚举文件/文件夹,并想知道是否有任何库(或更好的.Net功能)可以将FileSystemAccessRule.FileSystemRights属性格式化为POSIX,如unix文件权限字符串;

  

d - X -

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

为什么在打印实际字符串描述时需要编码字符串?

FileSystemRights Rights = 0;

Rights |= FileSystemRights.CreateFiles;
Rights |= FileSystemRights.ExecuteFile;

Console.WriteLine(Rights.ToString());

// Prints:   CreateFiles, ExecuteFile