I'm encountering an error in creating a textfile to a specific folder. Specifically its path. It says :
UnauthorizedAccessException was unhandled
Access to path 'E:\Majel\Tic Tac Toe\TextFiles' is denied.
I tried a lot of ways to fix this, some others said, It's the permission that you can't access. But my PC is running as an administrator and still Im encountering the said problem.
Here's my code:
private void Form1_Load(object sender, EventArgs e)
{
string fileName = textBox1.Text;
File.WriteAllText("E:\\Majel\\Tic Tac Toe\\TextFiles" + fileName, "\nYou are Logged In!");
}
Can someone help me to fix this?