S
Sonnich Jensen
Hi
This simple piece of code does not work
FileStream fs = new FileStream(s, FileMode.CreateNew, FileAccess.ReadWrite);
using (StreamWriter writer = new StreamWriter(fs))
{
writer.WriteLine("blah blah");
}
However, I need to write to the folder where my programme is (c:\prg files\my folder\ ) - and that is not allowed
I have surfed the net but I really cannot find a working solution
WBR
Sonnich
This simple piece of code does not work
FileStream fs = new FileStream(s, FileMode.CreateNew, FileAccess.ReadWrite);
using (StreamWriter writer = new StreamWriter(fs))
{
writer.WriteLine("blah blah");
}
However, I need to write to the folder where my programme is (c:\prg files\my folder\ ) - and that is not allowed
I have surfed the net but I really cannot find a working solution
WBR
Sonnich