I am trying to write to a text file usingASP.NET 4.5 with c#
using the following code:
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"./Experiment/main.txt", true))
{
file.WriteLine(DateTime.UtcNow.ToString() + " test");
}
And I am getting this exception:
"Could not find a part of the path 'C:\Windows\SysWOW64\inetsrv\Experiment\main.txt'."
The folder Experiment
is the folder of my web application.