I'm having a problem opening a file in C#.
I got a file which I need to read and when I'm trying to open it using C#, for some reason file cannot be found.
Here is my code:
string fullpath = Directory.GetCurrentDirectory() +
string.Format(@"\FT933\FT33_1");
try
{
StreamReader reader = new StreamReader(fullpath);
}
catch(Exception e)
{
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
The file I'm trying to open is inside Debug\FT933\FT33_1 and got no extension.
Whenever I'm trying to open a text file from the same directory I manage to do so.
EDIT:
to be more it precise i think that problem that i have is that i dont know how to open a file that has no extentions (if i change the file to have .txt extention i do manage to open it)
Path.Combineinstead of concatenation. – Oded♦ Dec 2 '11 at 11:39