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 trialAaron Selonke
10,323 PointsC# File.ReadAllText() Excption says โCould not find the fileโ
Cant figure out why the File.ReadAllText() Method is throwing en error. The file it is trying to read from is written exactly the same
Here are Screenshots
2)Error message - and Screen shot of File structure
namespace HandlingExceptions
{
class Program
{
static void Main(string[] args)
{
string content = File.ReadAllText(@"D:\test.txt");
Console.WriteLine(content);
Console.ReadLine();
}
}
}
3 Answers
Steven Parker
231,236 PointsJust a wild guess - zero length file?
Alessandro Romani
19,723 PointsIn your code I can't see the using System.IO; Why?
Steven Parker
231,236 PointsIt seems to have compiled without it.
Aaron Selonke
10,323 PointsFound the answer on Stack,
seems the default setting for windows is to not show you the complete file path (unless change the viewing)
so that file Test.txt was actually Test.txt.txt, and so the compiler could not find it
Steven Parker
231,236 PointsIt doesn't show the complete file path ... in your source code? I know windows explorer does stuff like that (unless turned off) .. but source code? Sheesh.
What IDE is this?