I'm trying to read from a file inside the current user's appdata folder in C#, but I'm still learning so I have this:
int counter = 0;
string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:\\test.txt");
while ((line = file.ReadLine()) != null)
{
Console.WriteLine(line);
counter++;
}
file.Close();
// Suspend the screen.
Console.ReadLine();
But I don't know what to type to make sure it's always the current user's folder.
I might be misunderstanding your question but if you want to to get the current user appdata folder you could use this:
so your code might become:
or even shorter: