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 trialMohamed Monir
22,362 Pointsi need to know where is the Error
i write the code like i do it in Sample but i get error Message
DirectoryInfo directory = new DirectoryInfo(System.IO.Directory.GetCurrentDirectory());
string fileName = Path.Combine(directory.FullName, "secretmessage.txt");
var file = new FileInfo(fileName);
using(var reader = new System.IO.StreamReader(fileName.FullName))
{
}
2 Answers
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,350 PointsThe third line declaring file
is not needed and can be removed.
On the fourth line declare a new StreamReader
, instead of System.IO.StreamReader
and pass into it fileName
, instead of fileName.FullName
.
Change these and you are good.
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,350 Pointsusing(var reader = new StreamReader(fileName)) {}
Mohamed Monir
22,362 PointsMohamed Monir
22,362 Pointsi do it and write this code but code didn't work
DirectoryInfo directory = new DirectoryInfo(System.IO.Directory.GetCurrentDirectory()); string fileName = Path.Combine(directory.FullName, "secretmessage.txt");
using(var reader = new System.IO.StreamReader(fileName.FullName)) {
}