Access to the path denied error in C#
问题 I have read a similar post, but i just cant figure out the problem. I have changed the windows permissions and changed routes. When i try to save a file it throws me the exception: Access to the path **** denied. string route="D:\\"; FileStream fs = new FileStream(route, FileMode.Create); <--here is the problem StreamWriter write = new StreamWriter(fs); patient person = new patient(); patient.name = textBox1.Text; patient.name2 = textBox2.Text; 回答1: You are trying to create a FileStream