Hi,
My windows service is creating a directory on a shared folder, and I am getting a error:
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalCreateDirectory(String fullPath, String path,DirectorySecurity dirSecurity)
at System.IO.Directory.CreateDirectory(String path, DirectorySecurity directorySecurity)
at System.IO.Directory.CreateDirectory(String path) at
I referencing the shared folder like: \\255.255.255.255\myfolder.uploads\
Any ideas on what I have to do to be able to write to this folder? The share has Everyone and fullcontrol setup on it.
Updates
Do I have to impersonate a user on the other server somehow?