Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Streams and Data Processing Reading Data Console I/O

Writes file path instead of the sentence :(

class Program {

    static void Main(string[] args)
    {
        string currDirectory = Directory.GetCurrentDirectory();
        DirectoryInfo directory = new DirectoryInfo(currDirectory);
        var fileName = Path.Combine(directory.FullName, "proba.txt");
        var file = new FileInfo(fileName);
        if (file.Exists)
        {
            using (var reader = new StringReader(file.FullName))
            {
                Console.SetIn(reader);
                Console.WriteLine(Console.ReadLine());
            }
        }
        Console.ReadKey();
    }

(proba.txt contains: Hello World) I Wrote it by myself and I didn't notice any difference between this and the one in the video but it writes the file path instead of the sentence.

2 Answers

andren
andren
28,558 Points

I notice one difference from the video in this line:

using (var reader = new StringReader(file.FullName))

You use StringReader while the video uses StreamReader. If you correct that mistake then that will almost certainly fix your issue.

Oh my god, I have no idea why I wrote that... and I didnt even notice :D This "shortcut tab" sometimes tricks me xD thanks