|
分類:[.NET 全般]
C#にて多言語アプリを作成しています。
特定のフォルダに対して権限を与える必要があり 下記FileSystemAccessRuleを使用しています。
ユーザ("Authenticated Users")に対して権限を付与しているのですが 外国語OS(スペイン)などでは上記固定文字では認識できないようです。 多言語対応する場合、上記ユーザは何を指定すればよいのでしょうか --- FileSystemAccessRule fsaRule = new FileSystemAccessRule( "Authenticated Users", FileSystemRights.Modify | FileSystemRights.Read | FileSystemRights.ListDirectory, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow);
|