Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question
1  
\FT933\FT33_1. ? – Sergey Osypchuk Dec 2 '11 at 11:37
it has no extention when i push properties its says the file type is file – Nadav Stern Dec 2 '11 at 11:38
3  
When building paths, use Path.Combine instead of concatenation. – Oded Dec 2 '11 at 11:39
2  
if you debug, what is the value of fullpath before you pass it to the StreamReader? It might not be what you expect it to be. – Øyvind Knobloch-Bråthen Dec 2 '11 at 11:39
AH - what is the error message? You expect us to wildly guess? – TomTom Dec 2 '11 at 11:40
show 4 more comments

1 Answer

up vote 6 down vote accepted

Don't use hardcoded path or directories, but builtin functions to join paths.
Try

string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
string fullpath = Path.Combine(path, your_filename);

And remember that current directory could not be your app's one!.
More, always include streams in using statement

using(StreamReader reader = new StreamReader(fullpath))
{
    // Do here what you need
}

so you're sure it will be released when necessary not wasting memory!

EDITED after OP comment:
This is my working attempt:

string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
string fullpath = Path.Combine(path, @"FT933\FT33_1");
if (File.Exists(fullpath))
{
    using (StreamReader reader = new StreamReader(fullpath))
    {
        string ret = reader.ReadLine();
    }
}
else
{
    // File does not exists
}

If you fall in // File does not exists section, be sure that file is not where you're searching for!
Are you sure your file does not have an hidden extension?
Are you sure OS or some app is not locking file for some reason?

EDITED again after another comment:
Open a command prompt (using Start->Run->CMD (enter) ) and run this command:

dir "C:\Users\Stern\Documents\Visual Studio 2010\Projects\Engine\ConsoleApplication1\bin\Debug\FT933\*.*" /s

and edit your question showing us result.

share|improve this answer
the problem that i have is with openning a file with no extention my file type is file if the file had txt extention i wouldnt have this kind of problem. – Nadav Stern Dec 2 '11 at 11:56
@NadavStern: are you sure that file has not any extension? Maybe it's hidden from OS. Or maybe that file is locked from OS... – Marco Dec 2 '11 at 11:58
the file type is file 100% sure – Nadav Stern Dec 2 '11 at 12:00
@NadavStern: believe me, I've just tried and it works for me. See my edited post in a minute. – Marco Dec 2 '11 at 12:01
@NadavStern: did you try my code? Does it work? – Marco Dec 2 '11 at 12:09
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.