writing a file to a network fileshare **SOLVED**
Hey all,
I am trying to write a file to remote Fileshare on the Network. I mapped the Share as NetworkDrive. Now I am writing the file as usual using
FileStream streamWriter = File.Create(filepath);
streamWriter.Write(data, 0, size);
This works on a local drive but not on the Network drive.
I checked the Permissions on the Network Drive and did set those to Everyone Full Control.
Any idea what I can try to make this work?
Thanks, Stephan
Re: writing a file to a network fileshare
Are you getting an error message?
Re: writing a file to a network fileshare
How are you qualifying the address?
Re: writing a file to a network fileshare
Sorry for the delay of this answer. I found out that it has nothing to do with the .NET Framework or my Code.
I tried it in a regular C# Form and my Code works fine. I tried it in a C# Library called from Microsoft BizTalk Server 2004 and it did error. It had to do with permissions. Thanks for your help,
Stephan