我想创建只有所有者才能访问的文件夹。我试过这样做并得到这个代码 Error IdentityNotMappedException was unhandled
。该文件夹将在服务器驱动器上创建,并且我已将服务器驱动器映射到本地驱动器。
Dim fs As FileSystemSecurity = File.GetAccessControl(Q_FilePath)
fs.AddAccessRule(New FileSystemAccessRule("Owner", FileSystemRights.FullControl, AccessControlType.Deny))
File.SetAccessControl(Q_FilePath, fs)