I've been trying to get around a unauthorizedaccessexception caused by trying to create a folder on an external machine, which resides on the same network, I've tried working around this by adding an accessrule, which doesn't help I still get the same error.
String thepath = @"\\WONEATEMPMACHINE\C\ExampleData\"
DirectoryInfo dInfo = new DirectoryInfo(thepath);
DirectorySecurity dSecurity = dInfo.GetAccessControl();
dSecurity.AddAccessRule(new FileSystemAccessRule("DOMAINEXAMPLE\\wonea",
FileSystemRights.Write,
InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit,
PropagationFlags.None,
AccessControlType.Allow));
dInfo.SetAccessControl(dSecurity);
Directory.CreateDirectory(thepath + "\\newfolder");